586587588589590591592593
doGenericTests(new RowMatrix(Vector.of(1,2,3,4))); doGenericTests(new RowMatrix(Vector3.of(1,2,3))); } @Test public void g_ColumnMatrix() { doGenericTests(new ColumnMatrix(Vector.of(1,2,3,4))); doGenericTests(new ColumnMatrix(Vector3.of(1,2,3))); }