Package | Description |
---|---|
dev.nm.algebra.linear.matrix.doubles.matrixtype.sparse | |
dev.nm.algebra.linear.vector.doubles.operation |
Modifier and Type | Interface and Description |
---|---|
interface |
SparseMatrix
A sparse matrix stores only non-zero values.
|
Modifier and Type | Class and Description |
---|---|
class |
CSRSparseMatrix
The Compressed Sparse Row (CSR) format for sparse matrix has this representation:
(value, col_ind, row_ptr) . |
class |
DOKSparseMatrix
The Dictionary Of Key (DOK) format for sparse matrix uses the coordinates of
non-zero entries in the matrix as keys.
|
class |
LILSparseMatrix
The list of lists (LIL) format for sparse matrix stores one list per row,
where each entry stores a column index and value.
|
class |
SparseVector
A sparse vector stores only non-zero values.
|
Modifier and Type | Class and Description |
---|---|
class |
Basis
A basis is a set of linearly independent vectors spanning a vector space.
|
Copyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.