Package | Description |
---|---|
org.hipparchus.fitting |
Classes to perform curve fitting.
|
Modifier and Type | Method and Description |
---|---|
List<WeightedObservedPoint> |
WeightedObservedPoints.toList()
Gets a snapshot of the observed points.
|
Modifier and Type | Method and Description |
---|---|
void |
WeightedObservedPoints.add(WeightedObservedPoint observed)
Adds a point to the sample.
|
Modifier and Type | Method and Description |
---|---|
double[] |
AbstractCurveFitter.fit(Collection<WeightedObservedPoint> points)
Fits a curve.
|
protected LeastSquaresProblem |
HarmonicCurveFitter.getProblem(Collection<WeightedObservedPoint> observations)
Creates a least squares problem corresponding to the appropriate curve.
|
protected LeastSquaresProblem |
PolynomialCurveFitter.getProblem(Collection<WeightedObservedPoint> observations)
Creates a least squares problem corresponding to the appropriate curve.
|
protected abstract LeastSquaresProblem |
AbstractCurveFitter.getProblem(Collection<WeightedObservedPoint> points)
Creates a least squares problem corresponding to the appropriate curve.
|
protected LeastSquaresProblem |
GaussianCurveFitter.getProblem(Collection<WeightedObservedPoint> observations)
Creates a least squares problem corresponding to the appropriate curve.
|
protected LeastSquaresProblem |
SimpleCurveFitter.getProblem(Collection<WeightedObservedPoint> observations)
Creates a least squares problem corresponding to the appropriate curve.
|
Constructor and Description |
---|
ParameterGuesser(Collection<WeightedObservedPoint> observations)
Simple constructor.
|
ParameterGuesser(Collection<WeightedObservedPoint> observations)
Constructs instance with the specified observed points.
|
TheoreticalValuesFunction(ParametricUnivariateFunction f,
Collection<WeightedObservedPoint> observations) |
Copyright © 2016-2022 CS GROUP. All rights reserved.