315316317318319320321322323324325
@Test public void testRowMatrix() { RowMatrix rm = RowMatrix.wrap(Vector.of(1, 2, 3)); assertEquals(rm.transposeInnerProduct(rm.toMatrix()), rm.getTranspose() .innerProduct(rm)); } @Test public void testTriangular() {