SVD 858 Bytes
Newer Older
LM's avatar
LM committed
1 2 3 4 5 6 7 8 9 10 11 12 13
#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
  *
  *
  *
Don Gagne's avatar
Don Gagne committed
14
  * This module provides SVD decomposition for matrices (both real and complex).
LM's avatar
LM committed
15
  * This decomposition is accessible via the following MatrixBase method:
Don Gagne's avatar
Don Gagne committed
16
  *  - MatrixBase::jacobiSvd()
LM's avatar
LM committed
17 18 19 20 21 22 23 24
  *
  * \code
  * #include <Eigen/SVD>
  * \endcode
  */

#include "src/misc/Solve.h"
#include "src/SVD/JacobiSVD.h"
Don Gagne's avatar
Don Gagne committed
25 26 27
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
#include "src/SVD/JacobiSVD_MKL.h"
#endif
LM's avatar
LM committed
28 29 30 31 32 33 34 35 36 37
#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: */