2015-10-26 18:46:05 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
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
|
|
|
/** \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
|
|
|
*
|
2012-01-26 21:16:50 +08:00
|
|
|
* This module provides SVD decomposition for matrices (both real and complex).
|
2014-10-29 18:29:33 +08:00
|
|
|
* Two decomposition algorithms are provided:
|
|
|
|
* - JacobiSVD implementing two-sided Jacobi iterations is numerically very accurate, fast for small matrices, but very slow for larger ones.
|
|
|
|
* - BDCSVD implementing a recursive divide & conquer strategy on top of an upper-bidiagonalization which remains fast for large problems.
|
|
|
|
* These decompositions are accessible via the respective classes and following MatrixBase methods:
|
2012-01-26 21:16:50 +08:00
|
|
|
* - MatrixBase::jacobiSvd()
|
2014-10-29 18:29:33 +08:00
|
|
|
* - MatrixBase::bdcSvd()
|
2008-08-20 04:18:46 +08:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/SVD>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2016-06-09 23:11:03 +08:00
|
|
|
#include "src/misc/RealSvd2x2.h"
|
2014-10-29 18:29:33 +08:00
|
|
|
#include "src/SVD/UpperBidiagonalization.h"
|
2014-09-02 00:16:20 +08:00
|
|
|
#include "src/SVD/SVDBase.h"
|
2009-09-01 10:26:15 +08:00
|
|
|
#include "src/SVD/JacobiSVD.h"
|
2014-10-29 18:29:33 +08:00
|
|
|
#include "src/SVD/BDCSVD.h"
|
2011-12-09 23:52:37 +08:00
|
|
|
#if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
|
2016-07-26 00:00:47 +08:00
|
|
|
#include "src/SVD/JacobiSVD_LAPACKE.h"
|
2011-12-05 15:52:21 +08:00
|
|
|
#endif
|
2008-08-20 04:18:46 +08:00
|
|
|
|
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: */
|