Examples of IQRResult


Examples of mikera.matrixx.decompose.IQRResult

  }
 
  @Test
  public void testIdentity() {
    AMatrix a = IdentityMatrix.create(4);
    IQRResult result = QR.decompose(a);
    validateQR(a,result);
  }
View Full Code Here

Examples of mikera.matrixx.decompose.IQRResult

  }
 
  @Test
  public void testBig() {
    AMatrix a = Matrix.createRandom(30, 30);
    IQRResult result = QR.decompose(a);
    validateQR(a, result);
  }
View Full Code Here

Examples of mikera.matrixx.decompose.IQRResult

  }
 
  @Test
  public void testTall() {
    AMatrix a = Matrix.createRandom(5, 3);
    IQRResult result = QR.decompose(a);
    validateQR(a, result);
  }
View Full Code Here

Examples of mikera.matrixx.decompose.IQRResult

  }
 
  @Test
  public void testWide() {
    AMatrix a = Matrix.createRandom(3, 5);
    IQRResult result = QR.decompose(a);
    validateQR(a, result);
  }
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.