| CSRSparseMatrix |
The Compressed Sparse Row (CSR) format for sparse matrix has this
representation:
(value, col_ind, row_ptr).
|
| DOKSparseMatrix |
The Dictionary Of Key (DOK) format for sparse matrix uses the coordinates of
non-zero entries in the matrix as keys.
|
| LILSparseMatrix |
The list of lists (LIL) format for sparse matrix stores one list per row,
where each entry stores a column index and value.
|
| MatrixCoordinate |
The location of a matrix entry is specified by a 2D coordinates (i, j), where i and
j are the row-index and column-index of the entry respectively.
|
| SparseMatrix.Entry |
This is a (non-zero) entry in a sparse matrix.
|
| SparseMatrix.ValueArray |
|
| SparseMatrixUtils |
|
| SparseVector |
A sparse vector stores only non-zero values.
|
| SparseVector.Entry |
|
| SparseVector.Iterator |
This wrapper class overrides the Iterator.remove()
method to throw an exception when called.
|