Sparse left-looking QR factorization with numerical column pivoting. More...
Public Types | |
enum | { ColsAtCompileTime , MaxColsAtCompileTime } |
typedef Matrix< StorageIndex, Dynamic, 1 > | IndexVector |
typedef MatrixType_ | MatrixType |
typedef OrderingType_ | OrderingType |
typedef PermutationMatrix< Dynamic, Dynamic, StorageIndex > | PermutationType |
typedef SparseMatrix< Scalar, ColMajor, StorageIndex > | QRMatrixType |
typedef MatrixType::RealScalar | RealScalar |
typedef MatrixType::Scalar | Scalar |
typedef Matrix< Scalar, Dynamic, 1 > | ScalarVector |
typedef MatrixType::StorageIndex | StorageIndex |
Public Member Functions | |
template<typename Rhs , typename Dest > | |
bool | _solve_impl (const MatrixBase< Rhs > &B, MatrixBase< Dest > &dest) const |
void | _sort_matrix_Q () |
void | analyzePattern (const MatrixType &mat) |
Preprocessing step of a QR factorization. More... | |
Index | cols () const |
const PermutationType & | colsPermutation () const |
void | compute (const MatrixType &mat) |
void | factorize (const MatrixType &mat) |
Performs the numerical QR factorization of the input matrix. More... | |
ComputationInfo | info () const |
Reports whether previous computation was successful. More... | |
std::string | lastErrorMessage () const |
SparseQRMatrixQReturnType< SparseQR > | matrixQ () const |
const QRMatrixType & | matrixR () const |
Index | rank () const |
Index | rows () const |
void | setPivotThreshold (const RealScalar &threshold) |
template<typename Rhs > | |
const Solve< SparseQR, Rhs > | solve (const MatrixBase< Rhs > &B) const |
template<typename Rhs > | |
const Solve< SparseQR, Rhs > | solve (const SparseMatrixBase< Rhs > &B) const |
SparseQR () | |
SparseQR (const MatrixType &mat) | |
Public Member Functions inherited from Eigen::SparseSolverBase< SparseQR< MatrixType_, OrderingType_ > > | |
SparseQR< MatrixType_, OrderingType_ > & | derived () |
const SparseQR< MatrixType_, OrderingType_ > & | derived () const |
const Solve< SparseQR< MatrixType_, OrderingType_ >, Rhs > | solve (const MatrixBase< Rhs > &b) const |
const Solve< SparseQR< MatrixType_, OrderingType_ >, Rhs > | solve (const SparseMatrixBase< Rhs > &b) const |
SparseSolverBase () | |
SparseSolverBase (SparseSolverBase &&other) | |
~SparseSolverBase () | |
Protected Types | |
typedef SparseSolverBase< SparseQR< MatrixType_, OrderingType_ > > | Base |
Sparse left-looking QR factorization with numerical column pivoting.
This class implements a left-looking QR decomposition of sparse matrices with numerical column pivoting. When a column has a norm less than a given tolerance it is implicitly permuted to the end. The QR factorization thus obtained is given by A*P = Q*R where R is upper triangular or trapezoidal.
P is the column permutation which is the product of the fill-reducing and the numerical permutations. Use colsPermutation() to get it.
Q is the orthogonal matrix represented as products of Householder reflectors. Use matrixQ() to get an expression and matrixQ().adjoint() to get the adjoint. You can then apply it to a vector.
R is the sparse triangular or trapezoidal matrix. The later occurs when A is rank-deficient. matrixR().topLeftCorner(rank(), rank()) always returns a triangular factor of full rank.
MatrixType_ | The type of the sparse matrix A, must be a column-major SparseMatrix<> |
OrderingType_ | The fill-reducing ordering method. See the OrderingMethods module for the list of built-in and external ordering methods. |
This class follows the sparse solver concept .
The numerical pivoting strategy and default threshold are the same as in SuiteSparse QR, and detailed in the following paper: Tim Davis, "Algorithm 915, SuiteSparseQR: Multifrontal Multithreaded Rank-Revealing Sparse QR Factorization, ACM Trans. on Math. Soft. 38(1), 2011. Even though it is qualified as "rank-revealing", this strategy might fail for some rank deficient problems. When this class is used to solve linear or least-square problems it is thus strongly recommended to check the accuracy of the computed solution. If it failed, it usually helps to increase the threshold with setPivotThreshold.
Definition at line 86 of file SparseQR.h.
|
protected |
Definition at line 89 of file SparseQR.h.
typedef Matrix<StorageIndex, Dynamic, 1> Eigen::SparseQR< MatrixType_, OrderingType_ >::IndexVector |
Definition at line 99 of file SparseQR.h.
typedef MatrixType_ Eigen::SparseQR< MatrixType_, OrderingType_ >::MatrixType |
Definition at line 93 of file SparseQR.h.
typedef OrderingType_ Eigen::SparseQR< MatrixType_, OrderingType_ >::OrderingType |
Definition at line 94 of file SparseQR.h.
typedef PermutationMatrix<Dynamic, Dynamic, StorageIndex> Eigen::SparseQR< MatrixType_, OrderingType_ >::PermutationType |
Definition at line 101 of file SparseQR.h.
typedef SparseMatrix<Scalar,ColMajor,StorageIndex> Eigen::SparseQR< MatrixType_, OrderingType_ >::QRMatrixType |
Definition at line 98 of file SparseQR.h.
typedef MatrixType::RealScalar Eigen::SparseQR< MatrixType_, OrderingType_ >::RealScalar |
Definition at line 96 of file SparseQR.h.
typedef MatrixType::Scalar Eigen::SparseQR< MatrixType_, OrderingType_ >::Scalar |
Definition at line 95 of file SparseQR.h.
typedef Matrix<Scalar, Dynamic, 1> Eigen::SparseQR< MatrixType_, OrderingType_ >::ScalarVector |
Definition at line 100 of file SparseQR.h.
typedef MatrixType::StorageIndex Eigen::SparseQR< MatrixType_, OrderingType_ >::StorageIndex |
Definition at line 97 of file SparseQR.h.
anonymous enum |
|
inline |
Definition at line 109 of file SparseQR.h.
|
inlineexplicit |
Construct a QR factorization of the matrix mat.
Definition at line 118 of file SparseQR.h.
|
inline |
Definition at line 207 of file SparseQR.h.
|
inline |
Definition at line 278 of file SparseQR.h.
void Eigen::SparseQR< MatrixType, OrderingType >::analyzePattern | ( | const MatrixType & | mat | ) |
Preprocessing step of a QR factorization.
In this step, the fill-reducing permutation is computed and applied to the columns of A and the column elimination tree is computed as well. Only the sparsity pattern of mat is exploited.
Definition at line 322 of file SparseQR.h.
|
inline |
|
inline |
Definition at line 194 of file SparseQR.h.
|
inline |
Computes the QR factorization of the sparse matrix mat.
Definition at line 129 of file SparseQR.h.
void Eigen::SparseQR< MatrixType, OrderingType >::factorize | ( | const MatrixType & | mat | ) |
Performs the numerical QR factorization of the input matrix.
The function SparseQR::analyzePattern(const MatrixType&) must have been called beforehand with a matrix having the same sparsity pattern than mat.
mat | The sparse column-major matrix |
Definition at line 363 of file SparseQR.h.
|
inline |
Reports whether previous computation was successful.
Success
if computation was successful, NumericalIssue
if the QR factorization reports a numerical problem InvalidInput
if the input matrix is invalidDefinition at line 270 of file SparseQR.h.
|
inline |
Definition at line 203 of file SparseQR.h.
|
inline |
To get a plain SparseMatrix representation of Q:
Internally, this call simply performs a sparse product between the matrix Q and a sparse identity matrix. However, due to the fact that the sparse reflectors are stored unsorted, two transpositions are needed to sort them before performing the product.
Definition at line 188 of file SparseQR.h.
|
inline |
To sort the entries, you can assign it to a row-major matrix, and if a column-major matrix is required, you can copy it again:
Definition at line 158 of file SparseQR.h.
|
inline |
Definition at line 164 of file SparseQR.h.
|
inline |
|
inline |
Sets the threshold that is used to determine linearly dependent columns during the factorization.
In practice, if during the factorization the norm of the column that has to be eliminated is below this threshold, then the entire column is treated as zero, and it is moved at the end.
Definition at line 237 of file SparseQR.h.
|
inline |
Definition at line 248 of file SparseQR.h.
|
inline |
Definition at line 255 of file SparseQR.h.
|
protected |
Definition at line 289 of file SparseQR.h.
|
protected |
Definition at line 303 of file SparseQR.h.
|
protected |
Definition at line 290 of file SparseQR.h.
|
protected |
Definition at line 304 of file SparseQR.h.
|
protected |
Definition at line 296 of file SparseQR.h.
|
mutableprotected |
Definition at line 291 of file SparseQR.h.
|
protected |
Definition at line 306 of file SparseQR.h.
|
protected |
Definition at line 305 of file SparseQR.h.
|
protected |
Definition at line 292 of file SparseQR.h.
|
protected |
Definition at line 302 of file SparseQR.h.
|
protected |
Definition at line 299 of file SparseQR.h.
|
protected |
Definition at line 297 of file SparseQR.h.
|
protected |
Definition at line 298 of file SparseQR.h.
|
protected |
Definition at line 293 of file SparseQR.h.
|
protected |
Definition at line 295 of file SparseQR.h.
|
protected |
Definition at line 294 of file SparseQR.h.
|
protected |
Definition at line 300 of file SparseQR.h.
|
protected |
Definition at line 301 of file SparseQR.h.