Alters the current matrix to store the value A+B @param B the matrix to add this this
(Matrix B)
| 85 | * @param B the matrix to add this <i>this</i> |
| 86 | */ |
| 87 | public void mutableAdd(Matrix B) |
| 88 | { |
| 89 | this.mutableAdd(1.0, B); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Alters the current matrix to store the value <i>A+c*B</i> |
no outgoing calls