computeInverseWithCheck method added to matrix base (specialization for 1D to 4D)

This commit is contained in:
Manuel Yguel
2009-06-29 20:47:37 +02:00
parent 632cb7a4a1
commit 126a031a39
2 changed files with 185 additions and 17 deletions

View File

@@ -643,6 +643,7 @@ template<typename Derived> class MatrixBase
const PartialLU<PlainMatrixType> partialLu() const;
const PlainMatrixType inverse() const;
void computeInverse(PlainMatrixType *result) const;
bool computeInverseWithCheck( PlainMatrixType *result ) const;
Scalar determinant() const;
/////////// Cholesky module ///////////