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/PartialPivLU.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/LU/PartialPivLU.h') 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