bug #271: fix copy/paste mistakes in doc

This commit is contained in:
Gael Guennebaud
2011-05-23 13:39:26 +02:00
parent ee46ae9ba7
commit cf76a50a34
2 changed files with 3 additions and 3 deletions

View File

@@ -330,12 +330,12 @@ template<typename _MatrixType> class ColPivHouseholderQR
*/
inline Index nonzeroPivots() const
{
eigen_assert(m_isInitialized && "LU is not initialized.");
eigen_assert(m_isInitialized && "ColPivHouseholderQR is not initialized.");
return m_nonzero_pivots;
}
/** \returns the absolute value of the biggest pivot, i.e. the biggest
* diagonal coefficient of U.
* diagonal coefficient of R.
*/
RealScalar maxPivot() const { return m_maxpivot; }