Jaesung Oh / Eigen

Dependents:   MPC_current_control HydraulicControlBoard_SW AHRS Test_ekf ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Cholesky.h Source File

Cholesky.h

00001 #ifndef EIGEN_CHOLESKY_MODULE_H
00002 #define EIGEN_CHOLESKY_MODULE_H
00003 
00004 #include "Core.h"
00005 
00006 #include "src/Core/util/DisableStupidWarnings.h"
00007 
00008 /** \defgroup Cholesky_Module Cholesky module
00009   *
00010   *
00011   *
00012   * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
00013   * Those decompositions are accessible via the following MatrixBase methods:
00014   *  - MatrixBase::llt(),
00015   *  - MatrixBase::ldlt()
00016   *
00017   * \code
00018   * #include <Eigen/Cholesky>
00019   * \endcode
00020   */
00021 
00022 #include "src/misc/Solve.h"
00023 #include "src/Cholesky/LLT.h"
00024 #include "src/Cholesky/LDLT.h"
00025 #ifdef EIGEN_USE_LAPACKE
00026 #include "src/Cholesky/LLT_MKL.h"
00027 #endif
00028 
00029 #include "src/Core/util/ReenableStupidWarnings.h"
00030 
00031 #endif // EIGEN_CHOLESKY_MODULE_H
00032 /* vim: set filetype=cpp et sw=2 ts=2 ai: */