linbox
|
Space efficient representation of sparse matrices. More...
#include <csf.h>
Inherits BlackboxInterface.
Public Member Functions | |
void | read (MatrixStream< Field > &ms) |
Read the matrix from a matrix stream. More... | |
Space efficient representation of sparse matrices.
Compressed Sparse Row/Column (CSR/C) involves two arrays of length NNZ (number of non-zeros) One of column indices and another of matrix values. A third array contains pointers indicating the division of the two NNZ arrays into rows. (or vice versa w/r/t rows & columns)
|
inline |
Read the matrix from a matrix stream.
ms | Stream from which to read the matrix |