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

Method mutableSubtract

JSAT/src/jsat/linear/DenseVector.java:310–316  ·  view source on GitHub ↗
(double c)

Source from the content-addressed store, hash-verified

308 }
309
310 @Override
311 public void mutableSubtract(double c)
312 {
313 clearCaches();
314 for(int i = startIndex; i < endIndex; i++)
315 array[i] -= c;
316 }
317
318 @Override
319 public void mutableMultiply(double c)

Callers 9

covarianceMatrixMethod · 0.95
classifyMethod · 0.95
trainMethod · 0.95
clusterMethod · 0.95
mStepMethod · 0.95
runMethod · 0.95
clusterMethod · 0.95
fitMethod · 0.95
optimizeMethod · 0.95

Calls 1

clearCachesMethod · 0.95

Tested by

no test coverage detected