Test of zeroOut method, of class TestImp.
()
| 862 | * Test of zeroOut method, of class TestImp. |
| 863 | */ |
| 864 | @Test |
| 865 | public void testZeroOut() |
| 866 | { |
| 867 | System.out.println("zeroOut"); |
| 868 | |
| 869 | Matrix test = C.clone(); |
| 870 | test.zeroOut(); |
| 871 | |
| 872 | for(int i = 0; i < test.rows(); i++) |
| 873 | for(int j = 0; j < test.cols(); j++) |
| 874 | assertEquals(0, test.get(i, j), 0); |
| 875 | } |
| 876 | |
| 877 | /** |
| 878 | * Test of lup method, of class TestImp. |