Package org.hipparchus.fitting
Class HarmonicCurveFitter
java.lang.Object
org.hipparchus.fitting.AbstractCurveFitter
org.hipparchus.fitting.HarmonicCurveFitter
Fits points to a
The
harmonic oscillator
function.
The
initial guess values
must be passed
in the following order:
- Amplitude
- Angular frequency
- phase
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
This class guesses harmonic coefficients from a sample.Nested classes/interfaces inherited from class org.hipparchus.fitting.AbstractCurveFitter
AbstractCurveFitter.TheoreticalValuesFunction
-
Method Summary
Modifier and TypeMethodDescriptionstatic HarmonicCurveFitter
create()
Creates a default curve fitter.protected LeastSquaresProblem
getProblem
(Collection<WeightedObservedPoint> observations) Creates a least squares problem corresponding to the appropriate curve.withMaxIterations
(int newMaxIter) Configure the maximum number of iterations.withStartPoint
(double[] newStart) Configure the start point (initial guess).Methods inherited from class org.hipparchus.fitting.AbstractCurveFitter
fit, getOptimizer
-
Method Details
-
create
Creates a default curve fitter. The initial guess for the parameters will beHarmonicCurveFitter.ParameterGuesser
computed automatically, and the maximum number of iterations of the optimization algorithm is set toInteger.MAX_VALUE
.- Returns:
- a curve fitter.
- See Also:
-
withStartPoint
Configure the start point (initial guess).- Parameters:
newStart
- new start point (initial guess)- Returns:
- a new instance.
-
withMaxIterations
Configure the maximum number of iterations.- Parameters:
newMaxIter
- maximum number of iterations- Returns:
- a new instance.
-
getProblem
Creates a least squares problem corresponding to the appropriate curve.- Specified by:
getProblem
in classAbstractCurveFitter
- Parameters:
observations
- Sample points.- Returns:
- the least squares problem to use for fitting the curve to the
given
points
.
-