Test of arrayCopy method, of class SparseVector.
()
| 724 | * Test of arrayCopy method, of class SparseVector. |
| 725 | */ |
| 726 | @Test |
| 727 | public void testArrayCopy() |
| 728 | { |
| 729 | System.out.println("arrayCopy"); |
| 730 | |
| 731 | double[] xArray = x.arrayCopy(); |
| 732 | |
| 733 | for(int i = 0; i < x.length(); i++) |
| 734 | assertEquals(x.get(i), xArray[i], 0.0); |
| 735 | } |
| 736 | |
| 737 | /** |
| 738 | * Test of applyFunction method, of class SparseVector. |