faer/linalg/lu/partial_pivoting/
mod.rs

1//! the partial pivoting $LU$ decomposition is such that:
2//! $$PA = LU$$
3//! where $P$ is a permutation matrix, $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;