2008-08-04 04:45:59 +00:00
|
|
|
#ifndef EIGEN_LU_MODULE_H
|
|
|
|
#define EIGEN_LU_MODULE_H
|
2008-04-14 08:20:24 +00:00
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2008-12-18 20:48:02 +00:00
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
2008-04-14 08:20:24 +00:00
|
|
|
namespace Eigen {
|
|
|
|
|
2008-07-22 10:54:42 +00:00
|
|
|
/** \defgroup LU_Module LU module
|
2008-08-11 21:26:37 +00:00
|
|
|
* This module includes %LU decomposition and related notions such as matrix inversion and determinant.
|
2008-07-22 10:54:42 +00:00
|
|
|
* This module defines the following MatrixBase methods:
|
|
|
|
* - MatrixBase::inverse()
|
|
|
|
* - MatrixBase::determinant()
|
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/LU>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2008-08-04 04:45:59 +00:00
|
|
|
#include "src/LU/LU.h"
|
2008-05-12 21:15:17 +00:00
|
|
|
#include "src/LU/Determinant.h"
|
|
|
|
#include "src/LU/Inverse.h"
|
2008-04-14 08:20:24 +00:00
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2008-12-18 20:48:02 +00:00
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
2008-08-04 04:45:59 +00:00
|
|
|
#endif // EIGEN_LU_MODULE_H
|