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

Method mutableAdd

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

Alters the current matrix to store the value A+B @param B the matrix to add this this

(Matrix B)

Source from the content-addressed store, hash-verified

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>

Calls

no outgoing calls