2009-01-04 15:55:54 +00:00
|
|
|
#ifndef EIGEN_REGRESSION_MODULE_H
|
|
|
|
|
#define EIGEN_REGRESSION_MODULE_H
|
|
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
|
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
|
|
2009-09-04 09:23:38 +02:00
|
|
|
#include "Eigenvalues"
|
2009-01-04 15:55:54 +00:00
|
|
|
#include "Geometry"
|
|
|
|
|
|
|
|
|
|
namespace Eigen {
|
|
|
|
|
|
2009-01-26 13:53:43 +00:00
|
|
|
/** \defgroup LeastSquares_Module LeastSquares module
|
2009-01-04 15:55:54 +00:00
|
|
|
* This module provides linear regression and related features.
|
|
|
|
|
*
|
|
|
|
|
* \code
|
2009-01-26 13:53:43 +00:00
|
|
|
* #include <Eigen/LeastSquares>
|
2009-01-04 15:55:54 +00:00
|
|
|
* \endcode
|
|
|
|
|
*/
|
|
|
|
|
|
2009-01-26 13:53:43 +00:00
|
|
|
#include "src/LeastSquares/LeastSquares.h"
|
2009-01-04 15:55:54 +00:00
|
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
|
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
|
|
|
|
|
|
#endif // EIGEN_REGRESSION_MODULE_H
|
2009-12-01 18:00:29 -05:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|