faer/linalg/cholesky/llt/
mod.rs

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