faer 0.23.2

linear algebra library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! the full pivoting $LU$ decomposition is such that:
//! $$P A Q^\top = LU$$
//! where $P$ and $Q$ are permutation matrices, $L$ is a unit lower triangular matrix, and $U$ is
//! an upper triangular matrix.
#![allow(missing_docs)]

pub mod factor;
pub mod solve;

pub mod inverse;
pub mod reconstruct;