mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
8106d35408
of Eigen, and add a MSVC-friendly path in StaticAssert.
27 lines
530 B
Plaintext
27 lines
530 B
Plaintext
#ifndef EIGEN_SVD_MODULE_H
|
|
#define EIGEN_SVD_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup SVD_Module SVD module
|
|
* 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
|
|
*/
|
|
|
|
#include "src/SVD/SVD.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
#endif // EIGEN_SVD_MODULE_H
|