diff options
author | Manuel Yguel <manuel.yguel@gmail.com> | 2009-06-29 20:47:37 +0200 |
---|---|---|
committer | Manuel Yguel <manuel.yguel@gmail.com> | 2009-06-29 20:47:37 +0200 |
commit | 126a031a391390f42d95f2adb9a13db6345ab007 (patch) | |
tree | 74be4187088ebd6f49b6348cf7a716da4a126e4b /Eigen/src/Core | |
parent | 632cb7a4a1055fa3abbd341466d240cc50069361 (diff) |
computeInverseWithCheck method added to matrix base (specialization for 1D to 4D)
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r-- | Eigen/src/Core/MatrixBase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h index addf59570..df411da31 100644 --- a/Eigen/src/Core/MatrixBase.h +++ b/Eigen/src/Core/MatrixBase.h @@ -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 /////////// |