Package mikera.matrixx

Examples of mikera.matrixx.Matrix33.clone()


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

TOP
Copyright © 2018 www.massapi.com. 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.