eigen/Eigen/LU
Gael Guennebaud 172000aaeb Add .perpendicular() function in Geometry module (adapted from Eigen1)
Documentation:
 * add an overview for each module.
 * add an example for .all() and Cwise::operator<
2008-07-22 10:54:42 +00:00

25 lines
494 B
Plaintext

#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