eigen/Eigen/LU

25 lines
494 B
Plaintext
Raw Normal View History

#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