28template<
typename Scalar>
44 _summedPowersX = Eigen::VectorX<Scalar>::Zero((
static_cast<Eigen::Index
>(polynomialDegree) + 1) * 2 - 1);
45 _summedPowersXTimesY = Eigen::VectorX<Scalar>::Zero(
static_cast<Eigen::Index
>(polynomialDegree) + 1);
53 auto xpow =
static_cast<Scalar
>(1.0);
60 xpow =
static_cast<Scalar
>(1.0);
73 auto xpow =
static_cast<Scalar
>(1.0);
80 xpow =
static_cast<Scalar
>(1.0);
103 Eigen::MatrixXd ATA(effectiveDegree + 1, effectiveDegree + 1);
104 for (Eigen::Index i = 0; i < effectiveDegree + 1; ++i)
109 return ATA.inverse().topRows(effectiveDegree + 1) *
_summedPowersXTimesY.head(effectiveDegree + 1);
Incremental Least Squares Curve Fitting.
Definition IncrementalLeastSquares.hpp:30
void reset()
Reset the saved data.
Definition IncrementalLeastSquares.hpp:89
size_t _polyDegree
Polynomial degree to fit.
Definition IncrementalLeastSquares.hpp:113
void removeDataPoint(const Scalar &x, const Scalar &y)
Removes a data point from the polynomial fit.
Definition IncrementalLeastSquares.hpp:71
Eigen::VectorX< Scalar > _summedPowersXTimesY
Sum{x^2 * y}. DEGREE + 1 values.
Definition IncrementalLeastSquares.hpp:115
Eigen::VectorX< Scalar > _summedPowersX
Sum{x^2}. (DEGREE + 1) * 2 - 1 values.
Definition IncrementalLeastSquares.hpp:114
IncrementalLeastSquares(size_t polynomialDegree)
Constructor.
Definition IncrementalLeastSquares.hpp:34
Eigen::VectorX< Scalar > calcCoefficients() const
Calculates the polynomial coefficients in order a0 + a1 * x + a2 * x^2 + ...
Definition IncrementalLeastSquares.hpp:96
void setPolynomialDegree(size_t polynomialDegree)
Set the Polynomial Degree.
Definition IncrementalLeastSquares.hpp:41
void addDataPoint(const Scalar &x, const Scalar &y)
Add a data point to the polynomial.
Definition IncrementalLeastSquares.hpp:51