eigen2: pass QR decomposition and hyperplane tests

This commit is contained in:
Benoit Jacob
2011-01-25 11:19:26 -05:00
parent b1d6a9945c
commit 07e3ef4f38
5 changed files with 16 additions and 11 deletions

View File

@@ -379,6 +379,10 @@ template<typename Derived> class MatrixBase
const HouseholderQR<PlainObject> householderQr() const;
const ColPivHouseholderQR<PlainObject> colPivHouseholderQr() const;
const FullPivHouseholderQR<PlainObject> fullPivHouseholderQr() const;
#ifdef EIGEN2_SUPPORT
const QR<PlainObject> qr() const;
#endif
EigenvaluesReturnType eigenvalues() const;
RealScalar operatorNorm() const;