blob: f452d8307d63d6d8beba1499293b14a3d38b2749 [file]
#ifndef EIGEN_LU_H
#define EIGEN_LU_H
#include "Core"
namespace Eigen {
/** \defgroup LU_Module LU module
* This module includes LU decomposition and related notions such as matrix inversion and determinant.
* This module defines the following MatrixBase methods:
* - MatrixBase::inverse()
* - MatrixBase::determinant()
*
* \code
* #include <Eigen/LU>
* \endcode
*/
#include "src/LU/Determinant.h"
#include "src/LU/Inverse.h"
} // namespace Eigen
#endif // EIGEN_LU_H