13 Curve Fitting13.1 OverviewThe fitting package deals with curve fitting for univariate real functions. When a univariate real function y = f(x) does depend on some unknown parameters p0, p1 ... pn-1, curve fitting can be used to find these parameters. It does this by fitting the curve so it remains very close to a set of observed points (x0, y0), (x1, y1) ... (xk-1, yk-1). This fitting is done by finding the parameters values that minimizes the objective function Σ(yi - f(xi))2. This is actually a least-squares problem. For all provided curve fitters, the operating principle is the same. Users must
fit can be built by incrementally
adding instances to an instance of WeightedObservedPoints,
and then retrieve the list of WeightedObservedPoint by calling the toList
method on that container.
A weight can be associated with each observed point; it allows to take into account uncertainty
on some points when they come from noisy measurements for example. If no such information exist and
all points should be treated the same, it is safe to put 1.0 as the weight for all points (and this
is the default when no weight is passed to the add .
Some fitters require that initial values for the parameters are provided by the user,
through the 13.2 Implemented FunctionsFitting of specific functions are provided through the following classes:
The following example shows how to fit data with a polynomial function. // Collect data. final WeightedObservedPoints obs = new WeightedObservedPoints(); obs.add(-1.00, 2.021170021833143); obs.add(-0.99, 2.221135431136975); obs.add(-0.98, 2.09985277659314); obs.add(-0.97, 2.0211192647627025); // ... Lots of lines omitted ... obs.add(0.99, -2.4345814727089854); // Instantiate a third-degree polynomial fitter. final PolynomialCurveFitter fitter = PolynomialCurveFitter.create(3); // Retrieve fitted parameters (coefficients of the polynomial function). final double[] coeff = fitter.fit(obs.toList()); 13.3 General CaseThe AbstractCurveFitter class provides the basic functionality for implementing other curve fitting classes. Users must provide their own implementation of the curve template as a class that implements the ParametricUnivariateFunction interface. |