aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/LU
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-04-14 16:45:41 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-04-14 16:45:41 +0200
commit3551dea887ce60756c28796e83bb7c080f2b2782 (patch)
tree46c40a29e667d12ed5ef605aecdae6100b0bba0c /Eigen/src/LU
parentd8a3bdaa24becf4c0929a9f1eee505270a757009 (diff)
Cleaning pass on rcond estimator.
Diffstat (limited to 'Eigen/src/LU')
-rw-r--r--Eigen/src/LU/FullPivLU.h4
-rw-r--r--Eigen/src/LU/PartialPivLU.h4
2 files changed, 4 insertions, 4 deletions
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<typename _MatrixType> class FullPivLU
return Solve<FullPivLU, Rhs>(*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<typename _MatrixType> class PartialPivLU
return Solve<PartialPivLU, Rhs>(*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.