From 3551dea887ce60756c28796e83bb7c080f2b2782 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 14 Apr 2016 16:45:41 +0200 Subject: Cleaning pass on rcond estimator. --- Eigen/src/LU/FullPivLU.h | 4 ++-- Eigen/src/LU/PartialPivLU.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Eigen/src/LU') diff --git a/Eigen/src/LU/FullPivLU.h b/Eigen/src/LU/FullPivLU.h index 978a54eff..64b9eb7f1 100644 --- a/Eigen/src/LU/FullPivLU.h +++ b/Eigen/src/LU/FullPivLU.h @@ -231,13 +231,13 @@ template class FullPivLU return Solve(*this, b.derived()); } - /** \returns an estimate of the reciprocal condition number of the matrix of which *this is + /** \returns an estimate of the reciprocal condition number of the matrix of which \c *this is the LU decomposition. */ inline RealScalar rcond() const { eigen_assert(m_isInitialized && "PartialPivLU is not initialized."); - return ReciprocalConditionNumberEstimate(m_l1_norm, *this); + return internal::rcond_estimate_helper(m_l1_norm, *this); } /** \returns the determinant of the matrix of which diff --git a/Eigen/src/LU/PartialPivLU.h b/Eigen/src/LU/PartialPivLU.h index b22dd75fe..2e6d91939 100644 --- a/Eigen/src/LU/PartialPivLU.h +++ b/Eigen/src/LU/PartialPivLU.h @@ -151,13 +151,13 @@ template class PartialPivLU return Solve(*this, b.derived()); } - /** \returns an estimate of the reciprocal condition number of the matrix of which *this is + /** \returns an estimate of the reciprocal condition number of the matrix of which \c *this is the LU decomposition. */ inline RealScalar rcond() const { eigen_assert(m_isInitialized && "PartialPivLU is not initialized."); - return ReciprocalConditionNumberEstimate(m_l1_norm, *this); + return internal::rcond_estimate_helper(m_l1_norm, *this); } /** \returns the inverse of the matrix of which *this is the LU decomposition. -- cgit v1.2.3