faer-lu 0.17.1

Basic linear algebra routines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The full pivoting LU decomposition is such that:
//! $$PAQ^\top = LU,$$
//! where $P$ and $Q$ are permutation matrices, $L$ is a unit lower triangular matrix, and $U$ is
//! an upper triangular matrix.
//!
//! The full pivoting LU decomposition is more numerically stable than the one with partial
//! pivoting, but is more expensive to compute.

pub mod compute;
pub mod inverse;
pub mod reconstruct;
pub mod solve;