Get a single element. @param i Row index. @param j Column index. @return A(i,j) @exception ArrayIndexOutOfBoundsException
(int i, int j)
| 340 | */ |
| 341 | |
| 342 | public double get(int i, int j) { |
| 343 | return A[i][j]; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Get a submatrix. |
no outgoing calls