![]() |
Eigen
3.3.9
|
#include <Eigen/src/Core/SolverBase.h>
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:
Inheritance diagram for Eigen::SolverBase< Derived >:Public Member Functions | |
| AdjointReturnType | adjoint () const |
| Derived & | derived () |
| const Derived & | derived () const |
| template<typename Rhs> | |
| const Solve< Derived, Rhs > | solve (const MatrixBase< Rhs > &b) const |
| SolverBase () | |
| ConstTransposeReturnType | transpose () const |
Public Member Functions inherited from Eigen::EigenBase< Derived > | |
| Index | cols () const |
| Derived & | derived () |
| const Derived & | derived () const |
| Index | rows () const |
| Index | size () const |
Additional Inherited Members | |
Public Types inherited from Eigen::EigenBase< Derived > | |
| typedef Eigen::Index | Index |
| The interface type of indices. | |
|
inline |
Default constructor
|
inline |
A typical usage is to solve for the adjoint problem A' x = b:
For real scalar types, this function is equivalent to transpose().
|
inline |
|
inline |
|
inline |
|
inline |