aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/SVD
blob: cd40804ae353fd931eab081f9c594c474b3e8f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef EIGEN_SVD_MODULE_H
#define EIGEN_SVD_MODULE_H

#include "Core"

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

#endif // EIGEN_SVD_MODULE_H