faer/linalg/cholesky/ldlt/mod.rs
1//! the $L D L^\top$ decomposition of a self-adjoint positive definite matrix $A$ is such that:
2//! $$A = L D L^H$$
3//! where $L$ is a unit lower triangular matrix, and $D$ is a diagonal matrix
4#![allow(missing_docs)]
5
6pub mod factor;
7pub mod solve;
8pub mod update;
9
10pub mod inverse;
11pub mod reconstruct;