A base class for matrix decomposition and solvers. More...
Public Types | |
enum | { RowsAtCompileTime , ColsAtCompileTime , SizeAtCompileTime , MaxRowsAtCompileTime , MaxColsAtCompileTime , MaxSizeAtCompileTime , IsVectorAtCompileTime , NumDimensions } |
typedef std::conditional_t< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, const ConstTransposeReturnType >, const ConstTransposeReturnType > | AdjointReturnType |
typedef EigenBase< Derived > | Base |
typedef Scalar | CoeffReturnType |
typedef Transpose< const Derived > | ConstTransposeReturnType |
typedef internal::traits< Derived >::Scalar | Scalar |
Public Types inherited from Eigen::EigenBase< Derived > | |
typedef Eigen::Index | Index |
The interface type of indices. More... | |
typedef internal::traits< Derived >::StorageKind | StorageKind |
Public Member Functions | |
const AdjointReturnType | adjoint () const |
Derived & | derived () |
const Derived & | derived () const |
template<typename Rhs > | |
const Solve< Derived, 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 |
A base class for matrix decomposition and solvers.
Derived | the actual type of the decomposition/solver. |
Any matrix decomposition inheriting this base class provide the following API:
Definition at line 70 of file SolverBase.h.
typedef std::conditional_t<NumTraits<Scalar>::IsComplex, CwiseUnaryOp<internal::scalar_conjugate_op<Scalar>, const ConstTransposeReturnType>, const ConstTransposeReturnType > Eigen::SolverBase< Derived >::AdjointReturnType |
Definition at line 131 of file SolverBase.h.
typedef EigenBase<Derived> Eigen::SolverBase< Derived >::Base |
Definition at line 74 of file SolverBase.h.
typedef Scalar Eigen::SolverBase< Derived >::CoeffReturnType |
Definition at line 76 of file SolverBase.h.
typedef Transpose<const Derived> Eigen::SolverBase< Derived >::ConstTransposeReturnType |
Definition at line 114 of file SolverBase.h.
typedef internal::traits<Derived>::Scalar Eigen::SolverBase< Derived >::Scalar |
Definition at line 75 of file SolverBase.h.
anonymous enum |
Enumerator | |
---|---|
RowsAtCompileTime | |
ColsAtCompileTime | |
SizeAtCompileTime | |
MaxRowsAtCompileTime | |
MaxColsAtCompileTime | |
MaxSizeAtCompileTime | |
IsVectorAtCompileTime | |
NumDimensions |
Definition at line 81 of file SolverBase.h.
|
inline |
|
inline |
Definition at line 98 of file SolverBase.h.
|
inlineprotected |
Definition at line 149 of file SolverBase.h.
|
inline |
A typical usage is to solve for the adjoint problem A' x = b:
For real scalar types, this function is equivalent to transpose().
Definition at line 141 of file SolverBase.h.
|
inline |
Definition at line 48 of file EigenBase.h.
|
inline |
Definition at line 51 of file EigenBase.h.
|
inline |
Definition at line 107 of file SolverBase.h.
|
inline |
A typical usage is to solve for the transposed problem A^T x = b:
Definition at line 122 of file SolverBase.h.