WPILibC++ 2023.4.3-108-ge5452e3
|
LU decomposition of a matrix with partial pivoting, and related features. More...
Public Member Functions | |
PartialPivLU () | |
Default Constructor. More... | |
PartialPivLU (Index size) | |
Default Constructor with memory preallocation. More... | |
template<typename InputType > | |
PartialPivLU (const EigenBase< InputType > &matrix) | |
Constructor. More... | |
template<typename InputType > | |
PartialPivLU (EigenBase< InputType > &matrix) | |
Constructor for inplace decomposition . More... | |
template<typename InputType > | |
PartialPivLU & | compute (const EigenBase< InputType > &matrix) |
const MatrixType & | matrixLU () const |
const PermutationType & | permutationP () const |
RealScalar | rcond () const |
const Inverse< PartialPivLU > | inverse () const |
Scalar | determinant () const |
MatrixType | reconstructedMatrix () const |
EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
template<typename RhsType , typename DstType > | |
EIGEN_DEVICE_FUNC void | _solve_impl (const RhsType &rhs, DstType &dst) const |
template<bool Conjugate, typename RhsType , typename DstType > | |
EIGEN_DEVICE_FUNC void | _solve_impl_transposed (const RhsType &rhs, DstType &dst) const |
Public Member Functions inherited from Eigen::SolverBase< PartialPivLU< _MatrixType > > | |
SolverBase () | |
Default constructor. More... | |
~SolverBase () | |
const Solve< PartialPivLU< _MatrixType >, Rhs > | solve (const MatrixBase< Rhs > &b) const |
ConstTransposeReturnType | transpose () const |
AdjointReturnType | adjoint () const |
EIGEN_DEVICE_FUNC PartialPivLU< _MatrixType > & | derived () |
EIGEN_DEVICE_FUNC const PartialPivLU< _MatrixType > & | derived () const |
Public Member Functions inherited from Eigen::EigenBase< PartialPivLU< _MatrixType > > | |
EIGEN_DEVICE_FUNC PartialPivLU< _MatrixType > & | derived () |
EIGEN_DEVICE_FUNC const PartialPivLU< _MatrixType > & | derived () const |
EIGEN_DEVICE_FUNC PartialPivLU< _MatrixType > & | const_cast_derived () const |
EIGEN_DEVICE_FUNC const PartialPivLU< _MatrixType > & | const_derived () const |
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | rows () const EIGEN_NOEXCEPT |
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | cols () const EIGEN_NOEXCEPT |
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index | size () const EIGEN_NOEXCEPT |
EIGEN_DEVICE_FUNC void | evalTo (Dest &dst) const |
EIGEN_DEVICE_FUNC void | addTo (Dest &dst) const |
EIGEN_DEVICE_FUNC void | subTo (Dest &dst) const |
EIGEN_DEVICE_FUNC void | applyThisOnTheRight (Dest &dst) const |
EIGEN_DEVICE_FUNC void | applyThisOnTheLeft (Dest &dst) const |
Protected Member Functions | |
void | compute () |
Protected Member Functions inherited from Eigen::SolverBase< PartialPivLU< _MatrixType > > | |
void | _check_solve_assertion (const Rhs &b) const |
Static Protected Member Functions | |
static void | check_template_parameters () |
Protected Attributes | |
MatrixType | m_lu |
PermutationType | m_p |
TranspositionType | m_rowsTranspositions |
RealScalar | m_l1_norm |
signed char | m_det_p |
bool | m_isInitialized |
Friends | |
class | SolverBase< PartialPivLU > |
LU decomposition of a matrix with partial pivoting, and related features.
_MatrixType | the type of the matrix of which we are computing the LU decomposition |
This class represents a LU decomposition of a square invertible matrix, with partial pivoting: the matrix A is decomposed as A = PLU where L is unit-lower-triangular, U is upper-triangular, and P is a permutation matrix.
Typically, partial pivoting LU decomposition is only considered numerically stable for square invertible matrices. Thus LAPACK's dgesv and dgesvx require the matrix to be square and invertible. The present class does the same. It will assert that the matrix is square, but it won't (actually it can't) check that the matrix is invertible: it is your task to check that you only use this decomposition on invertible matrices.
The guaranteed safe alternative, working for all matrices, is the full pivoting LU decomposition, provided by class FullPivLU.
This is not a rank-revealing LU decomposition. Many features are intentionally absent from this class, such as rank computation. If you need these features, use class FullPivLU.
This LU decomposition is suitable to invert invertible matrices. It is what MatrixBase::inverse() uses in the general case. On the other hand, it is not suitable to determine whether a given matrix is invertible.
The data of the LU decomposition can be directly accessed through the methods matrixLU(), permutationP().
This class supports the inplace decomposition mechanism.
typedef SolverBase<PartialPivLU> Eigen::PartialPivLU< _MatrixType >::Base |
typedef _MatrixType Eigen::PartialPivLU< _MatrixType >::MatrixType |
typedef PermutationMatrix<RowsAtCompileTime, MaxRowsAtCompileTime> Eigen::PartialPivLU< _MatrixType >::PermutationType |
typedef MatrixType::PlainObject Eigen::PartialPivLU< _MatrixType >::PlainObject |
typedef Transpositions<RowsAtCompileTime, MaxRowsAtCompileTime> Eigen::PartialPivLU< _MatrixType >::TranspositionType |
Eigen::PartialPivLU< MatrixType >::PartialPivLU |
Default Constructor.
The default constructor is useful in cases in which the user intends to perform decompositions via PartialPivLU::compute(const MatrixType&).
|
explicit |
Default Constructor with memory preallocation.
Like the default constructor but with preallocation of the internal data according to the specified problem size.
|
explicit |
Constructor.
matrix | the matrix of which to compute the LU decomposition. |
|
explicit |
Constructor for inplace decomposition .
matrix | the matrix of which to compute the LU decomposition. |
|
inline |
|
inline |
|
inlinestaticprotected |
|
inline |
|
protected |
|
inline |
PartialPivLU< MatrixType >::Scalar Eigen::PartialPivLU< MatrixType >::determinant |
|
inline |
|
inline |
|
inline |
|
inline |
*this
is the LU decomposition. MatrixType Eigen::PartialPivLU< MatrixType >::reconstructedMatrix |
|
inline |
|
friend |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |