Test of zeroOut method, of class SparseVector.
()
| 838 | * Test of zeroOut method, of class SparseVector. |
| 839 | */ |
| 840 | @Test |
| 841 | public void testZeroOut() |
| 842 | { |
| 843 | System.out.println("zeroOut"); |
| 844 | |
| 845 | x.zeroOut(); |
| 846 | |
| 847 | for(int i = 0; i < x.length(); i++) |
| 848 | assertEquals(0.0, x.get(i), 0.0); |
| 849 | } |
| 850 | |
| 851 | /** |
| 852 | * Test of getNonZeroIterator method, of class SparseVector. |