Alters the current matrix by swapping the values stored in two different rows. @param r1 the first row to swap @param r2 the second row to swap
(int r1, int r2)
| 600 | * @param r2 the second row to swap |
| 601 | */ |
| 602 | abstract public void swapRows(int r1, int r2); |
| 603 | |
| 604 | /** |
| 605 | * Creates a vector that has a copy of the values in column <i>j</i> of this |
no outgoing calls