Home | History | Annotate | Download | only in MatrixFunctions

Lines Matching refs:MatrixPower

15 template<typename MatrixType> class MatrixPower;
24 MatrixPowerRetval(MatrixPower<MatrixType>& pow, RealScalar p) : m_pow(pow), m_p(p)
35 MatrixPower<MatrixType>& m_pow;
275 class MatrixPower
297 explicit MatrixPower(const MatrixType& A) : m_A(A), m_conditionNumber(0)
356 void MatrixPower<MatrixType>::compute(ResultType& res, RealScalar p)
372 typename MatrixPower<MatrixType>::RealScalar
373 MatrixPower<MatrixType>::modfAndInit(RealScalar x, RealScalar* intpart)
398 void MatrixPower<MatrixType>::computeIntPower(ResultType& res, RealScalar p)
416 void MatrixPower<MatrixType>::computeFracPower(ResultType& res, RealScalar p)
428 inline void MatrixPower<MatrixType>::revertSchur(
436 inline void MatrixPower<MatrixType>::revertSchur(
480 { MatrixPower<PlainObject>(m_A.eval()).compute(res, m_p); }