Package mikera.matrixx.impl

Examples of mikera.matrixx.impl.VectorMatrixM3.rowCount()


public class TestVectorMatrix {

  @Test public void testCreateM3() {
    VectorMatrixM3 m=new VectorMatrixM3(0);
    assertEquals(0,m.rowCount());
    assertEquals(3,m.columnCount());
   
    AMatrix mt=m.getTranspose();
    assertEquals(0,mt.columnCount());
  }
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.