Package mikera.matrixx

Examples of mikera.matrixx.Matrix33.determinant()


    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
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.