Package mikera.matrixx

Examples of mikera.matrixx.Matrix33


      m=m.clone();
    }
  }
 
  public void timeMatrix33Determinant(int runs) {
    Matrix33 m=new Matrix33(1,2,3,4,5,6,7,8,9);
    double res=0;
   
    for (int i=0; i<runs; i++) {
      m.m00+=0.0000001;
      res+=m.determinant();
    }
    r.set(0,res);
  }
View Full Code Here

TOP

Related Classes of mikera.matrixx.Matrix33

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.