You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
858 B

  1. #ifndef EIGEN_SVD_MODULE_H
  2. #define EIGEN_SVD_MODULE_H
  3. #include "QR"
  4. #include "Householder"
  5. #include "Jacobi"
  6. #include "src/Core/util/DisableStupidWarnings.h"
  7. /** \defgroup SVD_Module SVD module
  8. *
  9. *
  10. *
  11. * This module provides SVD decomposition for matrices (both real and complex).
  12. * This decomposition is accessible via the following MatrixBase method:
  13. * - MatrixBase::jacobiSvd()
  14. *
  15. * \code
  16. * #include <Eigen/SVD>
  17. * \endcode
  18. */
  19. #include "src/misc/Solve.h"
  20. #include "src/SVD/JacobiSVD.h"
  21. #if defined(EIGEN_USE_LAPACKE) && !defined(EIGEN_USE_LAPACKE_STRICT)
  22. #include "src/SVD/JacobiSVD_MKL.h"
  23. #endif
  24. #include "src/SVD/UpperBidiagonalization.h"
  25. #ifdef EIGEN2_SUPPORT
  26. #include "src/Eigen2Support/SVD.h"
  27. #endif
  28. #include "src/Core/util/ReenableStupidWarnings.h"
  29. #endif // EIGEN_SVD_MODULE_H
  30. /* vim: set filetype=cpp et sw=2 ts=2 ai: */