Jacobi 645 B

123456789101112131415161718192021222324252627
  1. #ifndef EIGEN_JACOBI_MODULE_H
  2. #define EIGEN_JACOBI_MODULE_H
  3. #include "Core"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. /** \defgroup Jacobi_Module Jacobi module
  6. * This module provides Jacobi and Givens rotations.
  7. *
  8. * \code
  9. * #include <Eigen/Jacobi>
  10. * \endcode
  11. *
  12. * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
  13. * - MatrixBase::applyOnTheLeft()
  14. * - MatrixBase::applyOnTheRight().
  15. */
  16. #include "src/Jacobi/Jacobi.h"
  17. #include "src/Core/util/ReenableStupidWarnings.h"
  18. #endif // EIGEN_JACOBI_MODULE_H
  19. /* vim: set filetype=cpp et sw=2 ts=2 ai: */