aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SVD/JacobiSVD.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 23:28:44 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-12-11 23:28:44 +0100
commit774dba87c86b109ffa7332eb8b930f942d50eb91 (patch)
treee9545e68ac7108c40c44af6279cbd804989d3174 /Eigen/src/SVD/JacobiSVD.h
parentc884a8e7f4c0a25ac93a196c8eead84e8077a16a (diff)
parentb60a8967f549250c2701112a029853e2d2d8ae64 (diff)
merge
Diffstat (limited to 'Eigen/src/SVD/JacobiSVD.h')
-rwxr-xr-xEigen/src/SVD/JacobiSVD.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SVD/JacobiSVD.h b/Eigen/src/SVD/JacobiSVD.h
index cb918860c..59c965e15 100755
--- a/Eigen/src/SVD/JacobiSVD.h
+++ b/Eigen/src/SVD/JacobiSVD.h
@@ -666,7 +666,7 @@ void JacobiSVD<MatrixType, QRPreconditioner>::allocate(Index rows, Index cols, u
if(m_cols>m_rows) m_qr_precond_morecols.allocate(*this);
if(m_rows>m_cols) m_qr_precond_morerows.allocate(*this);
- if(m_cols!=m_cols) m_scaledMatrix.resize(rows,cols);
+ if(m_rows!=m_cols) m_scaledMatrix.resize(rows,cols);
}
template<typename MatrixType, int QRPreconditioner>