Lines Matching refs:MatrixPower
15 template<typename MatrixType> class MatrixPower; variable
24 MatrixPowerRetval(MatrixPower<MatrixType>& pow, RealScalar p) : m_pow(pow), m_p(p) in MatrixPowerRetval()
35 MatrixPower<MatrixType>& m_pow;
274 class MatrixPower
296 explicit MatrixPower(const MatrixType& A) : m_A(A), m_conditionNumber(0) in MatrixPower() function
355 void MatrixPower<MatrixType>::compute(ResultType& res, RealScalar p) in compute()
371 typename MatrixPower<MatrixType>::RealScalar
372 MatrixPower<MatrixType>::modfAndInit(RealScalar x, RealScalar* intpart) in modfAndInit()
397 void MatrixPower<MatrixType>::computeIntPower(ResultType& res, RealScalar p) in computeIntPower()
415 void MatrixPower<MatrixType>::computeFracPower(ResultType& res, RealScalar p) in computeFracPower()
427 inline void MatrixPower<MatrixType>::revertSchur( in revertSchur()
435 inline void MatrixPower<MatrixType>::revertSchur( in revertSchur()
479 { MatrixPower<PlainObject>(m_A.eval()).compute(res, m_p); } in evalTo()