faer/linalg/lu/full_pivoting/
mod.rs

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