Expand description
[Reexported at the root of this crate.] Factorization of real matrices.
Modules§
- balancing
- Functions for balancing a matrix.
- givens
- Construction of givens rotations.
- householder
- Construction of householder elementary reflections.
Structs§
- Bidiagonal
- The bidiagonalization of a general matrix.
- Cholesky
- The Cholesky decomposition of a symmetric-definite-positive matrix.
- ColPivQR
- The QR decomposition (with column pivoting) of a general matrix.
- Full
PivLU - LU decomposition with full row and column pivoting.
- Hessenberg
- Hessenberg decomposition of a general matrix.
- LU
- LU decomposition with partial (row) pivoting.
- Permutation
Sequence - A sequence of row or column permutations.
- QR
- The QR decomposition of a general matrix.
- SVD
- Singular Value Decomposition of a general matrix.
- Schur
- Schur decomposition of a square matrix.
- Symmetric
Eigen - Eigendecomposition of a symmetric matrix.
- Symmetric
Tridiagonal - Tridiagonalization of a symmetric matrix.
- UDU
- UDU factorization.
Functions§
- try_
invert_ to - Performs a LU decomposition to overwrite
out
with the inverse ofmatrix
. - wilkinson_
shift - Computes the wilkinson shift, i.e., the 2x2 symmetric matrix eigenvalue to its tailing
component
tnn
.