Lines Matching full:compressed
27 It implements a more versatile variant of the widely-used Compressed Column (or Row) Storage scheme.
60 The case where no empty space is available is a special case, and is refered as the \em compressed mode.
61 It corresponds to the widely used Compressed Column (or Row) Storage schemes (CCS or CRS).
66 It is worth noting that most of our wrappers to external libraries requires compressed matrices as inputs.
68 The results of %Eigen's operations always produces \b compressed sparse matrices.
71 Here is the previous matrix represented in compressed mode:
81 There is no notion of compressed/uncompressed mode for a SparseVector.
126 SparseMatrix<std::complex<float> > mat(1000,2000); // declares a 1000x2000 column-major compressed sparse matrix of complex<float>
127 SparseMatrix<double,RowMajor> mat(1000,2000); // declares a 1000x2000 row-major compressed sparse matrix of double
227 - The line 5 suppresses the remaining empty space and transforms the matrix into a compressed column storage.