2009-09-24 21:22:24 +00:00
|
|
|
#ifndef EIGEN_SVD_MODULE_H
|
|
|
|
#define EIGEN_SVD_MODULE_H
|
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
#include "QR"
|
|
|
|
#include "Householder"
|
|
|
|
#include "Jacobi"
|
2009-09-24 21:22:24 +00:00
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2009-09-24 21:22:24 +00:00
|
|
|
|
|
|
|
/** \defgroup SVD_Module SVD module
|
|
|
|
*
|
2011-10-23 17:52:20 +00:00
|
|
|
*
|
2009-09-24 21:22:24 +00:00
|
|
|
*
|
2012-05-09 08:33:05 +00:00
|
|
|
* This module provides SVD decomposition for matrices (both real and complex).
|
2009-09-24 21:22:24 +00:00
|
|
|
* This decomposition is accessible via the following MatrixBase method:
|
2012-05-09 08:33:05 +00:00
|
|
|
* - MatrixBase::jacobiSvd()
|
2009-09-24 21:22:24 +00:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/SVD>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
#include "src/misc/Solve.h"
|
|
|
|
#include "src/SVD/JacobiSVD.h"
|
2012-10-15 16:29:23 +00:00
|
|
|
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
|
|
|
|
#include "src/SVD/JacobiSVD_MKL.h"
|
|
|
|
#endif
|
2011-10-23 17:52:20 +00:00
|
|
|
#include "src/SVD/UpperBidiagonalization.h"
|
|
|
|
|
|
|
|
#ifdef EIGEN2_SUPPORT
|
|
|
|
#include "src/Eigen2Support/SVD.h"
|
|
|
|
#endif
|
2009-09-24 21:22:24 +00:00
|
|
|
|
2011-10-23 17:52:20 +00:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2009-09-24 21:22:24 +00:00
|
|
|
|
|
|
|
#endif // EIGEN_SVD_MODULE_H
|
2011-10-23 17:52:20 +00:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|