namespace Eigen { /** \eigenManualPage TopicLinearAlgebraDecompositions Catalogue of dense decompositions This page presents a catalogue of the dense matrix decompositions offered by Eigen. For an introduction on linear solvers and decompositions, check this \link TutorialLinearAlgebra page \endlink. \section TopicLinAlgBigTable Catalogue of decompositions offered by Eigen
Generic information, not Eigen-specific | Eigen-specific | |||||||
---|---|---|---|---|---|---|---|---|
Decomposition | Requirements on the matrix | Speed | Algorithm reliability and accuracy | Rank-revealing | Allows to compute (besides linear solving) | Linear solver provided by Eigen | Maturity of Eigen's implementation | Optimizations |
PartialPivLU | Invertible | Fast | Depends on condition number | - | - | Yes | Excellent | Blocking, Implicit MT |
FullPivLU | - | Slow | Proven | Yes | - | Yes | Excellent | - |
HouseholderQR | - | Fast | Depends on condition number | - | Orthogonalization | Yes | Excellent | Blocking |
ColPivHouseholderQR | - | Fast | Good | Yes | Orthogonalization | Yes | Excellent | Soon: blocking |
FullPivHouseholderQR | - | Slow | Proven | Yes | Orthogonalization | Yes | Average | - |
LLT | Positive definite | Very fast | Depends on condition number | - | - | Yes | Excellent | Blocking |
LDLT | Positive or negative semidefinite1 | Very fast | Good | - | - | Yes | Excellent | Soon: blocking |
\n Singular values and eigenvalues decompositions | ||||||||
JacobiSVD (two-sided) | - | Slow (but fast for small matrices) | Proven3 | Yes | Singular values/vectors, least squares | Yes (and does least squares) | Excellent | R-SVD |
SelfAdjointEigenSolver | Self-adjoint | Fast-average2 | Good | Yes | Eigenvalues/vectors | - | Excellent | Closed forms for 2x2 and 3x3 |
ComplexEigenSolver | Square | Slow-very slow2 | Depends on condition number | Yes | Eigenvalues/vectors | - | Average | - |
EigenSolver | Square and real | Average-slow2 | Depends on condition number | Yes | Eigenvalues/vectors | - | Average | - |
GeneralizedSelfAdjointEigenSolver | Square | Fast-average2 | Depends on condition number | - | Generalized eigenvalues/vectors | - | Good | - |
\n Helper decompositions | ||||||||
RealSchur | Square and real | Average-slow2 | Depends on condition number | Yes | - | - | Average | - |
ComplexSchur | Square | Slow-very slow2 | Depends on condition number | Yes | - | - | Average | - |
Tridiagonalization | Self-adjoint | Fast | Good | - | - | - | Good | Soon: blocking |
HessenbergDecomposition | Square | Average | Good | - | - | - | Good | Soon: blocking |