aboutsummaryrefslogtreecommitdiffhomepage
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
parent46bee5682fc41a8e2ad1f563b6362a9297ca3094 (diff)
bug #271: fix copy/paste mistakes in doc
-rw-r--r--Eigen/src/QR/ColPivHouseholderQR.h4
-rw-r--r--Eigen/src/SVD/JacobiSVD.h2
2 files changed, 3 insertions, 3 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; }
diff --git a/Eigen/src/SVD/JacobiSVD.h b/Eigen/src/SVD/JacobiSVD.h
index 29134c03f..78e744cf0 100644
--- a/Eigen/src/SVD/JacobiSVD.h
+++ b/Eigen/src/SVD/JacobiSVD.h
@@ -292,7 +292,7 @@ void real_2x2_jacobi_svd(const MatrixType& matrix, Index p, Index q,
*
* \class JacobiSVD
*
- * \brief Two-sided Jacobi SVD decomposition of a square matrix
+ * \brief Two-sided Jacobi SVD decomposition of a rectangular matrix
*
* \param MatrixType the type of the matrix of which we are computing the SVD decomposition
* \param QRPreconditioner this optional parameter allows to specify the type of QR decomposition that will be used internally