Class HarmonicCurveFitter.ParameterGuesser
- java.lang.Object
-
- org.apache.commons.math4.legacy.fitting.SimpleCurveFitter.ParameterGuesser
-
- org.apache.commons.math4.legacy.fitting.HarmonicCurveFitter.ParameterGuesser
-
- Enclosing class:
- HarmonicCurveFitter
public static class HarmonicCurveFitter.ParameterGuesser extends SimpleCurveFitter.ParameterGuesser
This class guesses harmonic coefficients from a sample.The algorithm used to guess the coefficients is as follows:
We know
at some sampling points and want to find , and such that .From the analytical expression, we can compute two primitives :
whereWe can remove
between these expressions :The preceding expression shows that
is a linear combination of both and :From the primitive, we can deduce the same form for definite integrals between
and for each :We can find the coefficients
and that best fit the sample to this linear expression by computing the definite integrals for each sample points.For a bilinear expression
, the coefficients and that minimize a least-squares criterion are given by these expressions:In fact, we can assume that both
For each and are positive and compute them directly, knowing that and that . The complete algorithm is therefore: from to , compute: and update the sums: Then:Once we know
we can compute:It appears that
and , so we can use these expressions to compute . The best estimate over the sample is given by averaging these expressions.Since integrals and means are involved in the preceding estimations, these operations run in
time, where is the number of measurements.
-
-
Constructor Summary
Constructors Constructor Description ParameterGuesser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
guess(Collection<WeightedObservedPoint> observations)
Computes an estimation of the parameters.-
Methods inherited from class org.apache.commons.math4.legacy.fitting.SimpleCurveFitter.ParameterGuesser
findMaxY, interpolateXAtY, sortObservations
-
-
-
-
Constructor Detail
-
ParameterGuesser
public ParameterGuesser()
-
-
Method Detail
-
guess
public double[] guess(Collection<WeightedObservedPoint> observations)
Computes an estimation of the parameters.- Specified by:
guess
in classSimpleCurveFitter.ParameterGuesser
- Parameters:
observations
- Observations.- Returns:
- the guessed parameters, in the following order:
- Amplitude
- Angular frequency
- Phase
- Throws:
NumberIsTooSmallException
- if the sample is too short.ZeroException
- if the abscissa range is zero.MathIllegalStateException
- when the guessing procedure cannot produce sensible results.
-
-