aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SVD
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-02 06:36:55 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-09-02 06:36:55 -0400
commite6b77bcc6bc915ec38640ecf414726fa2ba56fba (patch)
tree35bf233dbe4df303af9c5883186e56b51f200346 /Eigen/SVD
parentc16d65f01585b51f41b715a22c43983faab4299a (diff)
JacobiSVD: implement general R-SVD using full-pivoting QR, so we now support any rectangular matrix size by reducing to the smaller of the two dimensions (which is also an optimization)
Diffstat (limited to 'Eigen/SVD')
-rw-r--r--Eigen/SVD2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/SVD b/Eigen/SVD
index 01582310c..8d66d0736 100644
--- a/Eigen/SVD
+++ b/Eigen/SVD
@@ -1,7 +1,7 @@
#ifndef EIGEN_SVD_MODULE_H
#define EIGEN_SVD_MODULE_H
-#include "Core"
+#include "QR"
#include "Householder"
#include "Jacobi"