compbio
|
Proxy for the matrix function of some matrix (expression). More...
#include <MatrixFunction.h>
Public Types | |
typedef Derived::Scalar | Scalar |
typedef Derived::Index | Index |
typedef internal::stem_function< Scalar >::type | StemFunction |
![]() | |
typedef internal::traits< MatrixFunctionReturnValue< Derived > >::ReturnType | ReturnType |
typedef internal::dense_xpr_base< ReturnByValue >::type | Base |
Public Member Functions | |
MatrixFunctionReturnValue (const Derived &A, StemFunction f) | |
Constructor. More... | |
template<typename ResultType > | |
void | evalTo (ResultType &result) const |
Compute the matrix function. More... | |
Index | rows () const |
Index | cols () const |
![]() | |
EIGEN_DEVICE_FUNC void | evalTo (Dest &dst) const |
EIGEN_DEVICE_FUNC Index | rows () const |
EIGEN_DEVICE_FUNC Index | cols () const |
const Unusable & | coeff (Index) const |
const Unusable & | coeff (Index, Index) const |
Unusable & | coeffRef (Index) |
Unusable & | coeffRef (Index, Index) |
Protected Types | |
typedef internal::ref_selector< Derived >::type | DerivedNested |
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.
|
inline |
Constructor.
[in] | A | Matrix (expression) forming the argument of the matrix function. |
[in] | f | Stem function for matrix function under consideration. |
|
inline |
Compute the matrix function.
[out] | result | f applied to A , where f and A are as in the constructor. |