aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SVD/SVD.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-07-06 17:12:10 +0200
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-07-06 17:12:10 +0200
commite093b43b2c40f00495937c3134bf55ba29676993 (patch)
treec4366eb524f7b01670b47b8230d98e313ade4a06 /Eigen/src/SVD/SVD.h
parent0c2232e5d972986ed90c917b68fb24eef372841b (diff)
* rename QR to HouseholderQR because really that impacts the API, not just the impl.
* rename qr() to householderQr(), for same reason. * clarify that it's non-pivoting, non-rank-revealing, so remove all the rank API, make solve() be void instead of bool, update the docs/test, etc. * fix warning in SVD
Diffstat (limited to 'Eigen/src/SVD/SVD.h')
-rw-r--r--Eigen/src/SVD/SVD.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Eigen/src/SVD/SVD.h b/Eigen/src/SVD/SVD.h
index 71f6763a8..97f82c78f 100644
--- a/Eigen/src/SVD/SVD.h
+++ b/Eigen/src/SVD/SVD.h
@@ -145,7 +145,6 @@ void SVD<MatrixType>::compute(const MatrixType& matrix)
{
const int m = matrix.rows();
const int n = matrix.cols();
- const int nu = std::min(m,n);
m_matU.resize(m, m);
m_matU.setZero();