Package mikera.matrixx.impl

Examples of mikera.matrixx.impl.DiagonalMatrix.lowerBandwidthLimit()


    DiagonalMatrix m=DiagonalMatrix.create(Vector.of(0,1,2));
   
    assertEquals(0,m.upperBandwidth());
    assertEquals(0,m.upperBandwidthLimit());
    assertEquals(0,m.lowerBandwidth());
    assertEquals(0,m.lowerBandwidthLimit());
  }
 
  @Test public void testBandLength() {
    Matrix m=Matrix.create(3, 4);
   
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.