forked from bartvdbraak/blender
30 lines
556 B
Plaintext
30 lines
556 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
|
||
|
*
|
||
|
* \nonstableyet
|
||
|
*
|
||
|
* 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
|