Expand description
low level implementation of the various $LU$ decompositions
Modulesยง
- full_
pivoting - 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.
- partial_
pivoting - the partial pivoting $LU$ decomposition is such that: $$PA = LU$$ where $P$ is a permutation matrix, $L$ is a unit lower triangular matrix, and $U$ is an upper triangular matrix.