Alters the current matrix to store A-B @param B the matrix to subtract from this .
(Matrix B)
| 214 | * @param B the matrix to subtract from <i>this</i>. |
| 215 | */ |
| 216 | public void mutableSubtract(Matrix B) |
| 217 | { |
| 218 | this.mutableSubtract(1.0, B); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Alters the current matrix to store <i>A-c*B</i> |