Package mikera.matrixx

Examples of mikera.matrixx.Matrix11


  public static AMatrix calculateSymmetric(AMatrix a) {
    return calculate(a);
  }
 
  private static AMatrix calculateSmall(AMatrix m, int rc) {
    if (rc==1) return new Matrix11(m).inverse();
    if (rc==2) return new Matrix22(m).inverse();
    if (rc==3) return new Matrix33(m).inverse();
    throw new IllegalArgumentException(ErrorMessages.incompatibleShape(m));
  }
View Full Code Here

TOP

Related Classes of mikera.matrixx.Matrix11

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.