Crate spalinalg

Crate spalinalg 

Source
Expand description

Sparse Linear Algebra Library.

The sparse linear algebra library provides convenient matrix format including :

  • CooMatrix: Coordinate format matrix intended for incremental matrix construction with duplicates
  • DokMatrix: Dictionnary of key format matrix intended for incremental matrix construction without duplicates
  • CsrMatrix / CscMatrix: Compressed sparse matrix intended for standard matrix operations

Re-exports§

pub use coo::CooMatrix;
pub use csc::CscMatrix;
pub use csr::CsrMatrix;
pub use dok::DokMatrix;

Modules§

coo
Coordinate format module.
csc
Compressed sparse column format module.
csr
Compressed sparse row format module.
dok
Dictionnary of Keys format module.
scalar
Scalar module.