| #ifndef EIGEN_BDCSVD_MODULE_H |
| #define EIGEN_BDCSVD_MODULE_H |
| |
| #include <Eigen/SVD> |
| |
| #include "../../Eigen/src/Core/util/DisableStupidWarnings.h" |
| |
| /** \defgroup BDCSVD_Module BDCSVD module |
| * |
| * |
| * |
| * This module provides Divide & Conquer SVD decomposition for matrices (both real and complex). |
| * This decomposition is accessible via the following MatrixBase method: |
| * - MatrixBase::bdcSvd() |
| * |
| * \code |
| * #include <Eigen/BDCSVD> |
| * \endcode |
| */ |
| |
| #include "src/BDCSVD/BDCSVD.h" |
| |
| #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h" |
| |
| #endif // EIGEN_BDCSVD_MODULE_H |
| /* vim: set filetype=cpp et sw=2 ts=2 ai: */ |