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
|
|
|
|
*/
|
|
|
|
|
2008-08-04 12:45:59 +08:00
|
|
|
#include "src/LU/LU.h"
|
2008-05-13 05:15:17 +08:00
|
|
|
#include "src/LU/Determinant.h"
|
|
|
|
#include "src/LU/Inverse.h"
|
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
|