Test of variance method, of class ShiftedVec.
()
| 386 | * Test of variance method, of class ShiftedVec. |
| 387 | */ |
| 388 | @Test |
| 389 | public void testVariance() |
| 390 | { |
| 391 | System.out.println("variance"); |
| 392 | ShiftedVec a = new ShiftedVec(a_base, shift_a); |
| 393 | assertEquals(a_dense.variance(), a.variance(), 1e-10); |
| 394 | } |
| 395 | |
| 396 | /** |
| 397 | * Test of standardDeviation method, of class ShiftedVec. |