Jaesung Oh / Eigen

Dependents:   MPC_current_control HydraulicControlBoard_SW AHRS Test_ekf ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Jacobi.h Source File

Jacobi.h

00001 #ifndef EIGEN_JACOBI_MODULE_H
00002 #define EIGEN_JACOBI_MODULE_H
00003 
00004 #include "Core.h"
00005 
00006 #include "src/Core/util/DisableStupidWarnings.h"
00007 
00008 /** \defgroup Jacobi_Module Jacobi module
00009   * This module provides Jacobi and Givens rotations.
00010   *
00011   * \code
00012   * #include <Eigen/Jacobi>
00013   * \endcode
00014   *
00015   * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
00016   *  - MatrixBase::applyOnTheLeft()
00017   *  - MatrixBase::applyOnTheRight().
00018   */
00019 
00020 #include "src/Jacobi/Jacobi.h"
00021 
00022 #include "src/Core/util/ReenableStupidWarnings.h"
00023 
00024 #endif // EIGEN_JACOBI_MODULE_H
00025 /* vim: set filetype=cpp et sw=2 ts=2 ai: */