mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
3ed83fa681
* add Jacobi (Hestenes) SVD decomposition for square matrices * add function for trivial Householder
25 lines
424 B
Plaintext
25 lines
424 B
Plaintext
#ifndef EIGEN_JACOBI_MODULE_H
|
|
#define EIGEN_JACOBI_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup Jacobi_Module Jacobi module
|
|
* This module provides Jacobi rotations.
|
|
*
|
|
* \code
|
|
* #include <Eigen/Jacobi>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/Jacobi/Jacobi.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
#endif // EIGEN_JACOBI_MODULE_H
|