Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
classify
Method · 0.95
transform
Method · 0.95
Calls
2
rows
Method · 0.95
cols
Method · 0.95
Tested by
no test coverage detected