Lines Matching refs:getMatrix

306     assertTrue(VMath.equals(getMatrix(m1, r, c), sub1));  in testGet()
315 assertTrue(VMath.equals(getMatrix(m1, 2, 6, c), sub2)); in testGet()
323 assertTrue(VMath.equals(getMatrix(m1, r, 4, 8), sub3)); in testGet()
331 assertTrue(VMath.equals(getMatrix(m1, 0, 3, 6, 9), sub4)); in testGet()
334 …assertTrue(VMath.equals(getMatrix(m1, 0, getRowDimensionality(m1), 0, getColumnDimensionality(m1))… in testGet()
338 …assertTrue(VMath.equals(getMatrix(m1, riter[0], riter[riter.length - 1] + 1, citer[0], citer[citer… in testGet()
339 …assertTrue(VMath.equals(getMatrix(m1, riter, citer[0], citer[citer.length - 1] + 1), getMatrix(m1,… in testGet()
340 …assertTrue(VMath.equals(getMatrix(m1, riter[0], riter[riter.length - 1] + 1, citer), getMatrix(m1,… in testGet()
408 assertTrue(VMath.equals(getMatrix(m1, row_index, col_index), sub1)); in testSet()
414 assertTrue(VMath.equals(getMatrix(m1, 4, 9, col_index), sub2)); in testSet()
424 assertTrue(VMath.equals(getMatrix(m1, row_index, 2, 17), sub3)); in testSet()
431 assertTrue(almostEquals(getMatrix(m1, 0, 7, 16, 19), sub4)); in testSet()
445 assertTrue(VMath.equals(res2, getMatrix(m2, riter, citer))); in testSet()
449 assertTrue(VMath.equals(res2, getMatrix(m2, riter, citer))); in testSet()
453 assertTrue(VMath.equals(res2, getMatrix(m2, riter, citer))); in testSet()
540 assertNotSame(inner, getMatrix(m2, rows, cols)[0]); in testReference()
541 assertNotSame(inner, getMatrix(m2, r0, r1, cols)[0]); in testReference()
542 assertNotSame(inner, getMatrix(m2, rows, c0, c1)[0]); in testReference()
543 assertNotSame(inner, getMatrix(m2, r0, r1, c0, c1)[0]); in testReference()
582 assertDimensionMismatch("5", () -> getMatrix(unitMatrix(2), r, c)); in testDimensionMismatch()
583 assertDimensionMismatch(ERR_MATRIX_DIMENSIONS, () -> getMatrix(unitMatrix(2), 0, r1, c)); in testDimensionMismatch()
584 assertDimensionMismatch(ERR_MATRIX_DIMENSIONS, () -> getMatrix(unitMatrix(2), r, 0, c1)); in testDimensionMismatch()
585 assertDimensionMismatch(ERR_MATRIX_DIMENSIONS, () -> getMatrix(unitMatrix(2), 0, r1, 0, c1)); in testDimensionMismatch()