mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
a54b99fa72
- perhaps we can find a better name ? - note that the QR module still includes the EigenSolver module for compatibility
28 lines
532 B
Plaintext
28 lines
532 B
Plaintext
#ifndef EIGEN_REGRESSION_MODULE_H
|
|
#define EIGEN_REGRESSION_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
#include "EigenSolver"
|
|
#include "Geometry"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup LeastSquares_Module LeastSquares module
|
|
* This module provides linear regression and related features.
|
|
*
|
|
* \code
|
|
* #include <Eigen/LeastSquares>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/LeastSquares/LeastSquares.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
#endif // EIGEN_REGRESSION_MODULE_H
|