Test of sum method, of class SparseVector.
()
| 261 | * Test of sum method, of class SparseVector. |
| 262 | */ |
| 263 | @Test |
| 264 | public void testSum() |
| 265 | { |
| 266 | System.out.println("sum"); |
| 267 | assertEquals(19.0, x.sum(), 1e-15); |
| 268 | |
| 269 | assertEquals(20.0, y.sum(), 1e-15); |
| 270 | } |
| 271 | |
| 272 | /** |
| 273 | * Test of variance method, of class SparseVector. |