Creates a new Matrix that stores the result of A-B @param B the matrix to subtract from this . @return a new matrix equal to A-B
(Matrix B)
| 165 | * @return a new matrix equal to <i>A-B</i> |
| 166 | */ |
| 167 | public Matrix subtract(Matrix B) |
| 168 | { |
| 169 | Matrix toReturn = getThisSideMatrix(B); |
| 170 | toReturn.mutableSubtract(1.0, B); |
| 171 | return toReturn; |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Creates a new Matrix that stores the result of <i>A-B</i> |
nothing calls this directly
no test coverage detected