![]() |
Eigen-unsupported
3.4.99 (git rev 199c5f2b47eb1f8e5a2d20e60f07e97cd95a6ba6)
|
Proxy for the matrix power of some matrix (expression).
Derived | type of the base, a matrix (expression). |
This class holds the arguments to the matrix power 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::pow() and related functions and most of the time this is the only way it is used.
Inherits ReturnByValue< MatrixComplexPowerReturnValue< Derived > >.
Public Member Functions | |
template<typename ResultType > | |
void | evalTo (ResultType &result) const |
Compute the matrix power. More... | |
MatrixComplexPowerReturnValue (const Derived &A, const ComplexScalar &p) | |
Constructor. More... | |
|
inline |
Constructor.
[in] | A | Matrix (expression), the base of the matrix power. |
[in] | p | complex scalar, the exponent of the matrix power. |
|
inline |
Compute the matrix power.
Because p
is complex, \( A^p \) is simply evaluated as \( \exp(p \log(A)) \).
[out] | result | \( A^p \) where A and p are as in the constructor. |