Jacobi 939 B

123456789101112131415161718192021222324252627282930313233
  1. // This file is part of Eigen, a lightweight C++ template library
  2. // for linear algebra.
  3. //
  4. // This Source Code Form is subject to the terms of the Mozilla
  5. // Public License v. 2.0. If a copy of the MPL was not distributed
  6. // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. #ifndef EIGEN_JACOBI_MODULE_H
  8. #define EIGEN_JACOBI_MODULE_H
  9. #include "Core"
  10. #include "src/Core/util/DisableStupidWarnings.h"
  11. /** \defgroup Jacobi_Module Jacobi module
  12. * This module provides Jacobi and Givens rotations.
  13. *
  14. * \code
  15. * #include <Eigen/Jacobi>
  16. * \endcode
  17. *
  18. * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
  19. * - MatrixBase::applyOnTheLeft()
  20. * - MatrixBase::applyOnTheRight().
  21. */
  22. #include "src/Jacobi/Jacobi.h"
  23. #include "src/Core/util/ReenableStupidWarnings.h"
  24. #endif // EIGEN_JACOBI_MODULE_H
  25. /* vim: set filetype=cpp et sw=2 ts=2 ai: */