-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Johnnoe edited this page Aug 27, 2023
·
2 revisions
Class | Description |
---|---|
DenseMatrix | A Dense Matrix class that internally represents values as a contiguous array |
SparseMatrix | A matrix representation using an Array of Arrays representation, where each non-zero is represented using a value-column_index pair |
VectorN | An arbitrarily-sized vector for multiplication with the Matrices. |
SparseMatrixCoordinate | A value representing a single non-zero in a SparseMatrix. This format is not used internally, but can be generated using the SparseMatrix.to_coordinate_array() function. |