Proxy for the matrix function of some matrix (expression). More...
#include <ForwardDeclarations.h>
Public Types | |
typedef Derived::Index | Index |
typedef Derived::Scalar | Scalar |
typedef internal::stem_function< Scalar >::type | StemFunction |
Public Types inherited from Eigen::ReturnByValue< MatrixFunctionReturnValue< Derived > > | |
typedef internal::dense_xpr_base< ReturnByValue >::type | Base |
typedef internal::traits< MatrixFunctionReturnValue< Derived > >::ReturnType | ReturnType |
Public Member Functions | |
Index | cols () const |
template<typename ResultType > | |
void | evalTo (ResultType &result) const |
Compute the matrix function. More... | |
MatrixFunctionReturnValue (const Derived &A, StemFunction f) | |
Constructor. More... | |
Index | rows () const |
Public Member Functions inherited from Eigen::ReturnByValue< MatrixFunctionReturnValue< Derived > > | |
const Unusable & | coeff (Index) const |
const Unusable & | coeff (Index, Index) const |
Unusable & | coeffRef (Index) |
Unusable & | coeffRef (Index, Index) |
Index | cols () const |
void | evalTo (Dest &dst) const |
Index | rows () const |
Private Member Functions | |
MatrixFunctionReturnValue & | operator= (const MatrixFunctionReturnValue &) |
Private Attributes | |
internal::nested< Derived >::type | m_A |
StemFunction * | m_f |
Proxy for the matrix function of some matrix (expression).
Derived | Type of the argument to the matrix function. |
This class holds the argument to the matrix function until it is assigned or evaluated for some other reason (so the argument should not be changed in the meantime). It is the return type of matrixBase::matrixFunction() and related functions and most of the time this is the only way it is used.
Definition at line 270 of file ForwardDeclarations.h.
typedef Derived::Index Eigen::MatrixFunctionReturnValue< Derived >::Index |
Definition at line 494 of file MatrixFunction.h.
typedef Derived::Scalar Eigen::MatrixFunctionReturnValue< Derived >::Scalar |
Definition at line 493 of file MatrixFunction.h.
typedef internal::stem_function<Scalar>::type Eigen::MatrixFunctionReturnValue< Derived >::StemFunction |
Definition at line 495 of file MatrixFunction.h.
|
inline |
Constructor.
[in] | A | Matrix (expression) forming the argument of the matrix function. |
[in] | f | Stem function for matrix function under consideration. |
Definition at line 503 of file MatrixFunction.h.
|
inline |
Definition at line 529 of file MatrixFunction.h.
|
inline |
Compute the matrix function.
[out] | result | f applied to A , where f and A are as in the constructor. |
Definition at line 511 of file MatrixFunction.h.
|
private |
|
inline |
Definition at line 528 of file MatrixFunction.h.
|
private |
Definition at line 532 of file MatrixFunction.h.
|
private |
Definition at line 533 of file MatrixFunction.h.