faer 0.23.2

linear algebra library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! the $L D L^\top$ decomposition of a self-adjoint positive definite matrix $A$ is such that:
//! $$A = L D L^H$$
//! where $L$ is a unit lower triangular matrix, and $D$ is a diagonal matrix
#![allow(missing_docs)]

pub mod factor;
pub mod solve;
pub mod update;

pub mod inverse;
pub mod reconstruct;