Tidy up and write dox.

This commit is contained in:
Chen-Pang He
2012-08-28 01:55:13 +08:00
parent 5252d823c9
commit ba4e886376
5 changed files with 178 additions and 291 deletions

View File

@@ -454,8 +454,7 @@ template<typename Derived> class MatrixBase
const MatrixFunctionReturnValue<Derived> sin() const;
const MatrixSquareRootReturnValue<Derived> sqrt() const;
const MatrixLogarithmReturnValue<Derived> log() const;
template <typename ExponentType>
const MatrixPowerReturnValue<Derived, ExponentType> pow(const ExponentType& p) const;
const MatrixPowerReturnValue<Derived> pow(RealScalar p) const;
#ifdef EIGEN2_SUPPORT
template<typename ProductDerived, typename Lhs, typename Rhs>

View File

@@ -271,7 +271,7 @@ template<typename Derived> struct MatrixExponentialReturnValue;
template<typename Derived> class MatrixFunctionReturnValue;
template<typename Derived> class MatrixSquareRootReturnValue;
template<typename Derived> class MatrixLogarithmReturnValue;
template<typename Derived, typename ExponentType> class MatrixPowerReturnValue;
template<typename Derived> class MatrixPowerReturnValue;
namespace internal {
template <typename Scalar>