MCPcopy Index your code
hub / github.com/EdwardRaff/JSAT / mutableMultiply

Method mutableMultiply

JSAT/src/jsat/linear/GenericMatrix.java:327–333  ·  view source on GitHub ↗
(double c)

Source from the content-addressed store, hash-verified

325 }
326
327 @Override
328 public void mutableMultiply(double c)
329 {
330 for(int i = 0; i < rows(); i++)
331 for(int j = 0; j < cols(); j++)
332 set(i, j, get(i, j)*c);
333 }
334
335 @Override
336 public void mutableMultiply(final double c, ExecutorService threadPool)

Callers

nothing calls this directly

Calls 8

submitMethod · 0.80
logMethod · 0.80
getNameMethod · 0.65
rowsMethod · 0.45
colsMethod · 0.45
setMethod · 0.45
getMethod · 0.45
awaitMethod · 0.45

Tested by

no test coverage detected