mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-06 14:14:46 +08:00
a814ebe180
#include<algorithm> so I'm not sure how it compiled at all for you :)
22 lines
395 B
Plaintext
22 lines
395 B
Plaintext
#ifndef EIGEN_REGRESSION_MODULE_H
|
|
#define EIGEN_REGRESSION_MODULE_H
|
|
|
|
#include "LU"
|
|
#include "QR"
|
|
|
|
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
|