mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
5c34d8e20a
API update in Regression...
23 lines
415 B
Plaintext
23 lines
415 B
Plaintext
#ifndef EIGEN_REGRESSION_MODULE_H
|
|
#define EIGEN_REGRESSION_MODULE_H
|
|
|
|
#include "LU"
|
|
#include "QR"
|
|
#include "Geometry"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup Regression_Module Regression module
|
|
* This module provides linear regression and related features.
|
|
*
|
|
* \code
|
|
* #include <Eigen/Regression>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/Regression/Regression.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_REGRESSION_MODULE_H
|