public class FloatSparseMatrix.Entry
extends java.lang.Object
update method. This provides an efficient way to update the
non-zero entries of a sparse matrix.| Modifier and Type | Field and Description |
|---|---|
int |
i
The row index.
|
int |
index
The index to the matrix storage.
|
int |
j
The column index.
|
float |
x
The value.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
void |
update(float value)
Update the value of entry in the matrix.
|