-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Mendz edited this page Jun 18, 2018
·
7 revisions
Provides a library of APIs for working with dense, (DOK) sparse and compressed (CRS, CCS, CVS) matrices.
Date | Description |
---|---|
6/17/2018 | Released v1.2.1. |
12/6/2017 | Released v1.2.0. |
12/5/2017 | Released v1.1.0. |
11/4/2017 | Released v1.0.0. |
Name | Description |
---|---|
Matrix | Provides methods to work on a dense matrix. |
SquareMatrix | Provides methods to work on a square matrix. |
MatrixCoordinates | Provides methods to work on matrix coordinates. |
DOKSparseMatrixBase | The base class of DOK sparse matrix. |
CoordinatesKeyedSparseMatrix | Represents a coordinates keyed DOK sparse matrix. |
LinearIndexKeyedSparseMatrix | Represents a linear index keyed DOK sparse matrix. |
DOKSparseMatrixExtensions | Provides extensions to the DOK sparse matrix type. |
MatrixLinearIndexMode | An enumeration of the matrix linear index mode, if row- or column- major order. |
MDAS | An enumeration of basic mathematical operations: Multiply, Divide, Add or Subtract. |
Name | Description |
---|---|
CRS | An implementation of the Compressed Row Storage format, also known as Compressed Sparse Row (CSR) or Yale format. |
CCS | An implementation of the Compressed Column Storage format, also known as Compressed Sparse Column (CSC). |
CVS | An implementation of the Compressed Value Storage format, a lossless compression of matrices by their entry values. |
DOKSparseMatrixCompressions | Provides extensions to the DOK sparse matrix type to compress sparse matrices. |