Package gov.nih.mipav.model.algorithms
Class StochasticForests.SparseMatrix
- java.lang.Object
-
- gov.nih.mipav.model.algorithms.StochasticForests.SparseMatrix
-
- Enclosing class:
- StochasticForests
private class StochasticForests.SparseMatrix extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
num_cols
(package private) int
num_nonzero_values
(package private) int
num_rows
(package private) double[][]
sm
-
Constructor Summary
Constructors Constructor Description SparseMatrix()
SparseMatrix(int num_rows, int num_cols)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
coeff(int row, int col)
void
insert(int row, int col, double value)
-