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

Method mutableSubtract

JSAT/src/jsat/linear/Vec.java:332–335  ·  view source on GitHub ↗

Alters this vector such that this = this - c @param c the scalar constant to subtract from all values in this vector

(double c)

Source from the content-addressed store, hash-verified

330 * @param c the scalar constant to subtract from all values in this vector
331 */
332 public void mutableSubtract(double c)
333 {
334 mutableAdd(-c);
335 }
336
337 /**
338 * Alters this vector such that

Callers 15

subtractMethod · 0.95
solveMethod · 0.95
updateMethod · 0.95
classifyMethod · 0.95
trainCMethod · 0.95
mutableInverseMethod · 0.95
mutableTransformMethod · 0.95
mutableTransformMethod · 0.95
runMethod · 0.95
optimizeMethod · 0.95
optimizeMethod · 0.95
optimizeMethod · 0.95

Calls 1

mutableAddMethod · 0.95