Test of nnz method, of class DenseMatrix.
()
| 669 | * Test of nnz method, of class DenseMatrix. |
| 670 | */ |
| 671 | @Test |
| 672 | public void testNnz() |
| 673 | { |
| 674 | assertEquals(5*5, A.nnz()); |
| 675 | assertEquals(5*7, C.nnz()); |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * Test of clone method, of class DenseMatrix. |