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

Method mutableMultiply

JSAT/src/jsat/linear/DenseMatrix.java:535–541  ·  view source on GitHub ↗
(double c)

Source from the content-addressed store, hash-verified

533 }
534
535 @Override
536 public void mutableMultiply(double c)
537 {
538 for(int i = 0; i < rows(); i++)
539 for(int j = 0; j < cols(); j++)
540 matrix[i][j] *= c;
541 }
542
543 @Override
544 public void mutableTranspose()

Callers 2

classifyMethod · 0.95
transformMethod · 0.95

Calls 2

rowsMethod · 0.95
colsMethod · 0.95

Tested by

no test coverage detected