Test of nnz method, of class DenseMatrix.
()
| 660 | * Test of nnz method, of class DenseMatrix. |
| 661 | */ |
| 662 | @Test |
| 663 | public void testNnz() |
| 664 | { |
| 665 | assertEquals(5*5, A.nnz()); |
| 666 | assertEquals(5*7, C.nnz()); |
| 667 | } |
| 668 | |
| 669 | /** |
| 670 | * Test of clone method, of class DenseMatrix. |