aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/QR
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-05-23 13:39:26 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-05-23 13:39:26 +0200
commit117d17ee5873c430ac6705662c81bd15b6b407d6 (patch)
tree34f2303a4e0ad68d1ef6bf9ea950073cff981f80 /Eigen/src/QR
parent46bee5682fc41a8e2ad1f563b6362a9297ca3094 (diff)
bug #271: fix copy/paste mistakes in doc
Diffstat (limited to 'Eigen/src/QR')
-rw-r--r--Eigen/src/QR/ColPivHouseholderQR.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/QR/ColPivHouseholderQR.h b/Eigen/src/QR/ColPivHouseholderQR.h
index 2fa85722e..0cdcaa1cb 100644
--- a/Eigen/src/QR/ColPivHouseholderQR.h
+++ b/Eigen/src/QR/ColPivHouseholderQR.h
@@ -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; }