2008-08-04 12:45:59 +08:00
|
|
|
#ifndef EIGEN_LU_MODULE_H
|
|
|
|
#define EIGEN_LU_MODULE_H
|
2008-04-14 16:20:24 +08:00
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2008-12-19 04:48:02 +08:00
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
2008-04-14 16:20:24 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
2008-07-22 18:54:42 +08:00
|
|
|
/** \defgroup LU_Module LU module
|
2008-08-12 05:26:37 +08:00
|
|
|
* This module includes %LU decomposition and related notions such as matrix inversion and determinant.
|
2008-07-22 18:54:42 +08:00
|
|
|
* This module defines the following MatrixBase methods:
|
|
|
|
* - MatrixBase::inverse()
|
|
|
|
* - MatrixBase::determinant()
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/LU>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-03 15:18:10 +08:00
|
|
|
#include "src/misc/Solve.h"
|
|
|
|
#include "src/misc/Kernel.h"
|
|
|
|
#include "src/misc/Image.h"
|
2009-10-29 06:19:29 +08:00
|
|
|
#include "src/LU/FullPivLU.h"
|
|
|
|
#include "src/LU/PartialPivLU.h"
|
2008-05-13 05:15:17 +08:00
|
|
|
#include "src/LU/Determinant.h"
|
|
|
|
#include "src/LU/Inverse.h"
|
2009-12-15 11:52:11 +08:00
|
|
|
|
|
|
|
#if defined EIGEN_VECTORIZE_SSE
|
|
|
|
#include "src/LU/arch/Inverse_SSE.h"
|
|
|
|
#endif
|
2008-04-14 16:20:24 +08:00
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2008-12-19 04:48:02 +08:00
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
2008-08-04 12:45:59 +08:00
|
|
|
#endif // EIGEN_LU_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|