nalgebra-sparse 0.11.0

Sparse matrix computation based on nalgebra.
Documentation
1
2
3
4
5
6
//! Matrix factorization for sparse matrices.
//!
//! Currently, the only factorization provided here is the [`CscCholesky`] factorization.
mod cholesky;

pub use cholesky::*;