diff options
author | xiangzhou | 2015-07-11 13:05:26 -0400 |
---|---|---|
committer | xiangzhou | 2015-07-11 13:05:26 -0400 |
commit | c65902a4e062689f03bb22e3b2d2526cf887750d (patch) | |
tree | eb1be445e26178efb98d960617355b9c86a30b65 /src/Eigen/SVD | |
parent | b3b491cd9143d33bfebd4c5b26629573afcf0970 (diff) | |
download | pangemma-c65902a4e062689f03bb22e3b2d2526cf887750d.tar.gz |
add GXE test
Diffstat (limited to 'src/Eigen/SVD')
-rw-r--r-- | src/Eigen/SVD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/Eigen/SVD b/src/Eigen/SVD new file mode 100644 index 0000000..fd31001 --- /dev/null +++ b/src/Eigen/SVD @@ -0,0 +1,37 @@ +#ifndef EIGEN_SVD_MODULE_H +#define EIGEN_SVD_MODULE_H + +#include "QR" +#include "Householder" +#include "Jacobi" + +#include "src/Core/util/DisableStupidWarnings.h" + +/** \defgroup SVD_Module SVD module + * + * + * + * This module provides SVD decomposition for matrices (both real and complex). + * This decomposition is accessible via the following MatrixBase method: + * - MatrixBase::jacobiSvd() + * + * \code + * #include <Eigen/SVD> + * \endcode + */ + +#include "src/misc/Solve.h" +#include "src/SVD/JacobiSVD.h" +#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT) +#include "src/SVD/JacobiSVD_MKL.h" +#endif +#include "src/SVD/UpperBidiagonalization.h" + +#ifdef EIGEN2_SUPPORT +#include "src/Eigen2Support/SVD.h" +#endif + +#include "src/Core/util/ReenableStupidWarnings.h" + +#endif // EIGEN_SVD_MODULE_H +/* vim: set filetype=cpp et sw=2 ts=2 ai: */ |