Package mikera.matrixx.impl

Examples of mikera.matrixx.impl.RowMatrix


    assertFalse(Matrixx.createRandomSquareMatrix(3).isSymmetric());
  }

  @Test
  public void testRowMatrix() {
    RowMatrix rm = RowMatrix.wrap(Vector.of(1, 2, 3));

    assertEquals(rm.transposeInnerProduct(rm.toMatrix()), rm.getTranspose()
        .innerProduct(rm));
  }
View Full Code Here


    doGenericTests(ScalarMatrix.create(5,0.0));
    doGenericTests(ScalarMatrix.create(5,2.0).subMatrix(1, 3, 1, 3));
  }
 
  @Test public void g_RowMatrix() { 
    doGenericTests(new RowMatrix(Vector.of(1,2,3,4)));
    doGenericTests(new RowMatrix(Vector3.of(1,2,3)));   
  }
View Full Code Here

TOP

Related Classes of mikera.matrixx.impl.RowMatrix

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.