mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
172000aaeb
Documentation: * add an overview for each module. * add an example for .all() and Cwise::operator<
25 lines
494 B
Plaintext
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
|