Returns the value stored at at the matrix position A i,j @param i the row, starting from 0 @param j the column, starting from 0 @return the value at A i,j
(int i, int j)
| 530 | * @return the value at <i>A<sub>i,j</sub></i> |
| 531 | */ |
| 532 | abstract public double get(int i, int j); |
| 533 | |
| 534 | /** |
| 535 | * Sets the value stored at at the matrix position <i>A<sub>i,j</sub></i> |
no outgoing calls