Complete orthogonal decomposition (COD) of a matrix. More...
Public Member Functions | |
MatrixType::RealScalar | absDeterminant () const |
Index | cols () const |
const PermutationType & | colsPermutation () const |
CompleteOrthogonalDecomposition () | |
Default Constructor. More... | |
template<typename InputType > | |
CompleteOrthogonalDecomposition (const EigenBase< InputType > &matrix) | |
Constructs a complete orthogonal decomposition from a given matrix. More... | |
template<typename InputType > | |
CompleteOrthogonalDecomposition (EigenBase< InputType > &matrix) | |
Constructs a complete orthogonal decomposition from a given matrix. More... | |
CompleteOrthogonalDecomposition (Index rows, Index cols) | |
Default Constructor with memory preallocation. More... | |
template<typename InputType > | |
CompleteOrthogonalDecomposition & | compute (const EigenBase< InputType > &matrix) |
MatrixType::Scalar | determinant () const |
Index | dimensionOfKernel () const |
const HCoeffsType & | hCoeffs () const |
HouseholderSequenceType | householderQ (void) const |
ComputationInfo | info () const |
Reports whether the complete orthogonal decomposition was successful. More... | |
bool | isInjective () const |
bool | isInvertible () const |
bool | isSurjective () const |
MatrixType::RealScalar | logAbsDeterminant () const |
HouseholderSequenceType | matrixQ (void) const |
const MatrixType & | matrixQTZ () const |
const MatrixType & | matrixT () const |
MatrixType | matrixZ () const |
RealScalar | maxPivot () const |
Index | nonzeroPivots () const |
const Inverse< CompleteOrthogonalDecomposition > | pseudoInverse () const |
Index | rank () const |
Index | rows () const |
CompleteOrthogonalDecomposition & | setThreshold (const RealScalar &threshold) |
CompleteOrthogonalDecomposition & | setThreshold (Default_t) |
template<typename Rhs > | |
const Solve< CompleteOrthogonalDecomposition, Rhs > | solve (const MatrixBase< Rhs > &b) const |
RealScalar | threshold () const |
const HCoeffsType & | zCoeffs () const |
Public Member Functions inherited from Eigen::SolverBase< CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ > > | |
const AdjointReturnType | adjoint () const |
CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ > & | derived () |
const CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ > & | derived () const |
const Solve< CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >, Rhs > | solve (const MatrixBase< Rhs > &b) const |
SolverBase () | |
const ConstTransposeReturnType | transpose () const |
~SolverBase () | |
Public Member Functions inherited from Eigen::EigenBase< Derived > | |
template<typename Dest > | |
void | addTo (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheLeft (Dest &dst) const |
template<typename Dest > | |
void | applyThisOnTheRight (Dest &dst) const |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
Derived & | const_cast_derived () const |
const Derived & | const_derived () const |
Derived & | derived () |
const Derived & | derived () const |
template<typename Dest > | |
void | evalTo (Dest &dst) const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
template<typename Dest > | |
void | subTo (Dest &dst) const |
Protected Member Functions | |
template<bool Transpose_, typename Rhs > | |
void | _check_solve_assertion (const Rhs &b) const |
template<typename Rhs > | |
void | applyZAdjointOnTheLeftInPlace (Rhs &rhs) const |
template<bool Conjugate, typename Rhs > | |
void | applyZOnTheLeftInPlace (Rhs &rhs) const |
void | computeInPlace () |
Protected Member Functions inherited from Eigen::SolverBase< CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ > > | |
void | _check_solve_assertion (const Rhs &b) const |
Protected Attributes | |
ColPivHouseholderQR< MatrixType, PermutationIndex > | m_cpqr |
RowVectorType | m_temp |
HCoeffsType | m_zCoeffs |
Complete orthogonal decomposition (COD) of a matrix.
MatrixType_ | the type of the matrix of which we are computing the COD. |
This class performs a rank-revealing complete orthogonal decomposition of a matrix A into matrices P, Q, T, and Z such that
\[ \mathbf{A} \, \mathbf{P} = \mathbf{Q} \, \begin{bmatrix} \mathbf{T} & \mathbf{0} \\ \mathbf{0} & \mathbf{0} \end{bmatrix} \, \mathbf{Z} \]
by using Householder transformations. Here, P is a permutation matrix, Q and Z are unitary matrices and T an upper triangular matrix of size rank-by-rank. A may be rank deficient.
This class supports the inplace decomposition mechanism.
Definition at line 52 of file CompleteOrthogonalDecomposition.h.
typedef SolverBase<CompleteOrthogonalDecomposition> Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::Base |
Definition at line 57 of file CompleteOrthogonalDecomposition.h.
typedef internal::plain_diag_type<MatrixType>::type Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::HCoeffsType |
Definition at line 67 of file CompleteOrthogonalDecomposition.h.
typedef HouseholderSequence< MatrixType, internal::remove_all_t< typename HCoeffsType::ConjugateReturnType> > Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::HouseholderSequenceType |
Definition at line 78 of file CompleteOrthogonalDecomposition.h.
typedef internal::plain_row_type<MatrixType, Index>::type Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::IntRowVectorType |
Definition at line 71 of file CompleteOrthogonalDecomposition.h.
typedef MatrixType_ Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::MatrixType |
Definition at line 56 of file CompleteOrthogonalDecomposition.h.
typedef PermutationIndex_ Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::PermutationIndex |
Definition at line 61 of file CompleteOrthogonalDecomposition.h.
typedef PermutationMatrix<ColsAtCompileTime, MaxColsAtCompileTime, PermutationIndex> Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::PermutationType |
Definition at line 69 of file CompleteOrthogonalDecomposition.h.
typedef MatrixType::PlainObject Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::PlainObject |
Definition at line 79 of file CompleteOrthogonalDecomposition.h.
typedef internal::plain_row_type<MatrixType, RealScalar>::type Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::RealRowVectorType |
Definition at line 74 of file CompleteOrthogonalDecomposition.h.
typedef internal::plain_row_type<MatrixType>::type Eigen::CompleteOrthogonalDecomposition< MatrixType_, PermutationIndex_ >::RowVectorType |
Definition at line 72 of file CompleteOrthogonalDecomposition.h.
anonymous enum |
Enumerator | |
---|---|
MaxRowsAtCompileTime | |
MaxColsAtCompileTime |
Definition at line 63 of file CompleteOrthogonalDecomposition.h.
|
inline |
Default Constructor.
The default constructor is useful in cases in which the user intends to perform decompositions via CompleteOrthogonalDecomposition::compute(const* MatrixType&)
.
Definition at line 89 of file CompleteOrthogonalDecomposition.h.
|
inline |
Default Constructor with memory preallocation.
Like the default constructor but with preallocation of the internal data according to the specified problem size.
Definition at line 97 of file CompleteOrthogonalDecomposition.h.
|
inlineexplicit |
Constructs a complete orthogonal decomposition from a given matrix.
This constructor computes the complete orthogonal decomposition of the matrix matrix by calling the method compute(). The default threshold for rank determination will be used. It is a short cut for:
Definition at line 117 of file CompleteOrthogonalDecomposition.h.
|
inlineexplicit |
Constructs a complete orthogonal decomposition from a given matrix.
This overloaded constructor is provided for inplace decomposition when MatrixType
is a Eigen::Ref.
Definition at line 132 of file CompleteOrthogonalDecomposition.h.
|
inlineprotected |
Definition at line 397 of file CompleteOrthogonalDecomposition.h.
MatrixType::RealScalar Eigen::CompleteOrthogonalDecomposition< MatrixType, PermutationIndex >::absDeterminant |
Definition at line 430 of file CompleteOrthogonalDecomposition.h.
|
protected |
Overwrites rhs with \( \mathbf{Z}^* * \mathbf{rhs} \).
Definition at line 526 of file CompleteOrthogonalDecomposition.h.
|
protected |
Overwrites rhs with \( \mathbf{Z} * \mathbf{rhs} \) or \( \mathbf{\overline Z} * \mathbf{rhs} \) if Conjugate
is set to true
.
Definition at line 504 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 299 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 193 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 185 of file CompleteOrthogonalDecomposition.h.
|
protected |
Performs the complete orthogonal decomposition of the given matrix matrix. The result of the factorization is stored into *this
, and a reference to *this
is returned.
Definition at line 448 of file CompleteOrthogonalDecomposition.h.
MatrixType::Scalar Eigen::CompleteOrthogonalDecomposition< MatrixType, PermutationIndex >::determinant |
Definition at line 424 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 258 of file CompleteOrthogonalDecomposition.h.
|
inline |
Q
.For advanced uses only.
Definition at line 306 of file CompleteOrthogonalDecomposition.h.
CompleteOrthogonalDecomposition< MatrixType, PermutationIndex >::HouseholderSequenceType Eigen::CompleteOrthogonalDecomposition< MatrixType, PermutationIndex >::householderQ | ( | void | ) | const |
Definition at line 634 of file CompleteOrthogonalDecomposition.h.
|
inline |
Reports whether the complete orthogonal decomposition was successful.
Success
. It is provided for compatibility with other factorization routines. Success
Definition at line 380 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 267 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 285 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 276 of file CompleteOrthogonalDecomposition.h.
MatrixType::RealScalar Eigen::CompleteOrthogonalDecomposition< MatrixType, PermutationIndex >::logAbsDeterminant |
Definition at line 436 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 156 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 169 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 182 of file CompleteOrthogonalDecomposition.h.
|
inline |
|
inline |
Definition at line 370 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 365 of file CompleteOrthogonalDecomposition.h.
|
inline |
this->pseudoInverse()*rhs
to solve a linear systems. It is more efficient and numerically stable to call this->solve(rhs)
. Definition at line 292 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 249 of file CompleteOrthogonalDecomposition.h.
|
inline |
Definition at line 298 of file CompleteOrthogonalDecomposition.h.
|
inline |
Allows to prescribe a threshold to be used by certain methods, such as rank(), who need to determine when pivots are to be considered nonzero. Most be called before calling compute().
When it needs to get the threshold value, Eigen calls threshold(). By default, this uses a formula to automatically determine a reasonable threshold. Once you have called the present method setThreshold(const RealScalar&), your value is used instead.
threshold | The new value to use as the threshold. |
A pivot will be considered nonzero if its absolute value is strictly greater than \( \vert pivot \vert \leqslant threshold \times \vert maxpivot \vert \) where maxpivot is the biggest pivot.
If you want to come back to the default behavior, call setThreshold(Default_t)
Definition at line 334 of file CompleteOrthogonalDecomposition.h.
|
inline |
Allows to come back to the default behavior, letting Eigen use its default formula for determining the threshold.
You should pass the special object Eigen::Default as parameter here.
See the documentation of setThreshold(const RealScalar&).
Definition at line 347 of file CompleteOrthogonalDecomposition.h.
|
inline |
This method computes the minimum-norm solution X to a least squares problem
\[\mathrm{minimize} \|A X - B\|, \]
where A is the matrix of which *this
is the complete orthogonal decomposition.
b | the right-hand sides of the problem to solve. |
|
inline |
Returns the threshold that will be used by certain methods such as rank().
See the documentation of setThreshold(const RealScalar&).
Definition at line 356 of file CompleteOrthogonalDecomposition.h.
|
inline |
Z
.For advanced uses only.
Definition at line 313 of file CompleteOrthogonalDecomposition.h.
|
protected |
Definition at line 417 of file CompleteOrthogonalDecomposition.h.
|
protected |
Definition at line 419 of file CompleteOrthogonalDecomposition.h.
|
protected |
Definition at line 418 of file CompleteOrthogonalDecomposition.h.