Test of diag method, of class Matrix.
()
| 149 | * Test of diag method, of class Matrix. |
| 150 | */ |
| 151 | @Test |
| 152 | public void testDiag() |
| 153 | { |
| 154 | System.out.println("diag"); |
| 155 | |
| 156 | assertEquals(Matrix.eye(5), Matrix.diag(new ConstantVector(1.0, 5))); |
| 157 | |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Test of diagMult method, of class Matrix. |