From 73a0bfe261bef6d987829d391b2eb44a412d3884 Mon Sep 17 00:00:00 2001 From: Chen-Pang He Date: Thu, 27 Sep 2012 02:31:18 +0800 Subject: [PATCH] Write doc on (matrix power) * (matrix expression) --- unsupported/Eigen/src/MatrixFunctions/MatrixPower.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h b/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h index 996c24240..6e8b03cea 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h @@ -316,6 +316,13 @@ class MatrixPowerReturnValue : public ReturnByValue const MatrixPowerMatrixProduct operator*(const MatrixBase& b) const { return MatrixPowerMatrixProduct(m_pow, b.derived(), m_p); } @@ -343,7 +350,7 @@ template struct traits > : traits,Lhs,Rhs> > { }; -} +} // namespace internal template const MatrixPowerReturnValue MatrixBase::pow(RealScalar p) const