Main MRPT website > C++ reference
MRPT logo
LU
Go to the documentation of this file.
00001 #ifndef EIGEN_LU_MODULE_H
00002 #define EIGEN_LU_MODULE_H
00003 
00004 #include "Core"
00005 
00006 #include "src/Core/util/DisableStupidWarnings.h"
00007 
00008 namespace Eigen {
00009 
00010 /** \defgroup LU_Module LU module 
00011  * \ingroup eigen_grp
00012   * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
00013   * This module defines the following MatrixBase methods:
00014   *  - MatrixBase::inverse()
00015   *  - MatrixBase::determinant()
00016   *
00017   * \code
00018   * #include <Eigen/LU>
00019   * \endcode
00020   */
00021 
00022 #include "src/misc/Solve.h"
00023 #include "src/misc/Kernel.h"
00024 #include "src/misc/Image.h"
00025 #include "src/LU/FullPivLU.h"
00026 #include "src/LU/PartialPivLU.h"
00027 #include "src/LU/Determinant.h"
00028 #include "src/LU/Inverse.h"
00029 
00030 #if defined EIGEN_VECTORIZE_SSE
00031   #include "src/LU/arch/Inverse_SSE.h"
00032 #endif
00033 
00034 #ifdef EIGEN2_SUPPORT
00035   #include "src/Eigen2Support/LU.h"
00036 #endif
00037 
00038 } // namespace Eigen
00039 
00040 #include "src/Core/util/ReenableStupidWarnings.h"
00041 
00042 #endif // EIGEN_LU_MODULE_H
00043 /* vim: set filetype=cpp et sw=2 ts=2 ai: */



Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011