apply Ricard patch for Reverse with minor modifications

This commit is contained in:
Gael Guennebaud
2009-02-06 09:01:50 +00:00
parent dc97079905
commit 6fbca94803
11 changed files with 469 additions and 4 deletions

View File

@@ -359,7 +359,10 @@ template<typename Derived> class MatrixBase
const Eigen::Transpose<Derived> transpose() const;
void transposeInPlace();
const AdjointReturnType adjoint() const;
Eigen::Reverse<Derived, BothDirections> reverse();
const Eigen::Reverse<Derived, BothDirections> reverse() const;
void reverseInPlace();
RowXpr row(int i);
const RowXpr row(int i) const;