Proxy for the matrix exponential of some matrix (expression). More...
#include <MatrixExponential.h>
Public Types | |
typedef Derived::Index | Index |
Public Member Functions | |
Index | cols () const |
template<typename ResultType > | |
void | evalTo (ResultType &result) const |
Compute the matrix exponential. | |
MatrixExponentialReturnValue (const Derived &src) | |
Constructor. | |
Index | rows () const |
Protected Attributes | |
const Derived & | m_src |
Private Member Functions | |
MatrixExponentialReturnValue & | operator= (const MatrixExponentialReturnValue &) |
Proxy for the matrix exponential of some matrix (expression).
Derived | Type of the argument to the matrix exponential. |
This class holds the argument to the matrix exponential 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::exp() and most of the time this is the only way it is used.
Definition at line 302 of file MatrixExponential.h.
typedef Derived::Index MatrixExponentialReturnValue< Derived >::Index |
Definition at line 305 of file MatrixExponential.h.
MatrixExponentialReturnValue< Derived >::MatrixExponentialReturnValue | ( | const Derived & | src | ) | [inline] |
Constructor.
[in] | src | Matrix (expression) forming the argument of the matrix exponential. |
Definition at line 312 of file MatrixExponential.h.
Index MatrixExponentialReturnValue< Derived >::cols | ( | void | ) | const [inline] |
Reimplemented from ReturnByValue< MatrixExponentialReturnValue< Derived > >.
Definition at line 328 of file MatrixExponential.h.
void MatrixExponentialReturnValue< Derived >::evalTo | ( | ResultType & | result | ) | const [inline] |
Compute the matrix exponential.
[out] | result | the matrix exponential of src in the constructor. |
Definition at line 320 of file MatrixExponential.h.
MatrixExponentialReturnValue& MatrixExponentialReturnValue< Derived >::operator= | ( | const MatrixExponentialReturnValue< Derived > & | ) | [private] |
Index MatrixExponentialReturnValue< Derived >::rows | ( | void | ) | const [inline] |
Reimplemented from ReturnByValue< MatrixExponentialReturnValue< Derived > >.
Definition at line 327 of file MatrixExponential.h.
const Derived& MatrixExponentialReturnValue< Derived >::m_src [protected] |
Definition at line 331 of file MatrixExponential.h.