MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / mutableSubtract

Method mutableSubtract

JSAT/src/jsat/linear/Matrix.java:216–219  ·  view source on GitHub ↗

Alters the current matrix to store A-B @param B the matrix to subtract from this .

(Matrix B)

Source from the content-addressed store, hash-verified

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>

Calls 1

mutableAddMethod · 0.95