2008-08-20 04:18:46 +08:00
|
|
|
#ifndef EIGEN_SVD_MODULE_H
|
|
|
|
#define EIGEN_SVD_MODULE_H
|
|
|
|
|
2009-09-02 18:36:55 +08:00
|
|
|
#include "QR"
|
2009-08-09 22:58:13 +08:00
|
|
|
#include "Householder"
|
|
|
|
#include "Jacobi"
|
2008-08-20 04:18:46 +08:00
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-08-20 04:18:46 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
|
|
|
/** \defgroup SVD_Module SVD module
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
2010-06-29 22:10:47 +08:00
|
|
|
*
|
2009-01-26 21:53:43 +08:00
|
|
|
*
|
2008-08-20 04:18:46 +08:00
|
|
|
* This module provides SVD decomposition for (currently) real matrices.
|
|
|
|
* This decomposition is accessible via the following MatrixBase method:
|
|
|
|
* - MatrixBase::svd()
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/SVD>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-09 21:04:20 +08:00
|
|
|
#include "src/misc/Solve.h"
|
2009-09-01 10:26:15 +08:00
|
|
|
#include "src/SVD/JacobiSVD.h"
|
2011-12-09 23:52:37 +08:00
|
|
|
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
|
2011-12-05 15:52:21 +08:00
|
|
|
#include "src/SVD/JacobiSVD_MKL.h"
|
|
|
|
#endif
|
2010-01-15 11:30:58 +08:00
|
|
|
#include "src/SVD/UpperBidiagonalization.h"
|
2008-08-20 04:18:46 +08:00
|
|
|
|
2011-01-26 23:33:03 +08:00
|
|
|
#ifdef EIGEN2_SUPPORT
|
|
|
|
#include "src/Eigen2Support/SVD.h"
|
|
|
|
#endif
|
|
|
|
|
2008-08-20 04:18:46 +08:00
|
|
|
} // namespace Eigen
|
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-08-20 04:18:46 +08:00
|
|
|
#endif // EIGEN_SVD_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|