Test of set method, of class DenseMatrix.
()
| 617 | * Test of set method, of class DenseMatrix. |
| 618 | */ |
| 619 | @Test |
| 620 | public void testSet() |
| 621 | { |
| 622 | DenseMatrix toSet = new DenseMatrix(A.rows(), A.cols()); |
| 623 | |
| 624 | for(int i = 0; i < A.rows(); i++) |
| 625 | for(int j = 0; j < A.cols(); j++) |
| 626 | toSet.set(i, j, A.get(i, j)); |
| 627 | |
| 628 | assertEquals(A, toSet); |
| 629 | } |
| 630 | |
| 631 | /** |
| 632 | * Test of rows method, of class DenseMatrix. |