* add PermutationMatrix

* DiagonalMatrix:
   - add MaxSizeAtCompileTime parameter
   - DiagonalOnTheLeft ---> OnTheLeft
   - fix bug in DiagonalMatrix::setIdentity()
This commit is contained in:
Benoit Jacob
2009-11-15 21:12:15 -05:00
parent 1aaa9059c0
commit 955cd7f884
12 changed files with 325 additions and 30 deletions

View File

@@ -410,7 +410,7 @@ template<typename Derived> class MatrixBase
void applyOnTheRight(const AnyMatrixBase<OtherDerived>& other);
template<typename DiagonalDerived>
const DiagonalProduct<Derived, DiagonalDerived, DiagonalOnTheRight>
const DiagonalProduct<Derived, DiagonalDerived, OnTheRight>
operator*(const DiagonalBase<DiagonalDerived> &diagonal) const;
template<typename OtherDerived>