Sets 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 @param value the value to place at A i,j
(int i, int j, double value)
| 538 | * @param value the value to place at <i>A<sub>i,j</sub></i> |
| 539 | */ |
| 540 | abstract public void set(int i, int j, double value); |
| 541 | |
| 542 | /** |
| 543 | * Alters the current matrix at index <i>(i,j)</i> to be equal to |
no outgoing calls