diff options
author | Benoit Jacob <jacob.benoit.1@gmail.com> | 2009-09-02 06:36:55 -0400 |
---|---|---|
committer | Benoit Jacob <jacob.benoit.1@gmail.com> | 2009-09-02 06:36:55 -0400 |
commit | e6b77bcc6bc915ec38640ecf414726fa2ba56fba (patch) | |
tree | 35bf233dbe4df303af9c5883186e56b51f200346 /Eigen/SVD | |
parent | c16d65f01585b51f41b715a22c43983faab4299a (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/SVD | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #ifndef EIGEN_SVD_MODULE_H #define EIGEN_SVD_MODULE_H -#include "Core" +#include "QR" #include "Householder" #include "Jacobi" |