Uses of Class
org.apache.commons.math3.fitting.WeightedObservedPoint
-
Packages that use WeightedObservedPoint Package Description org.apache.commons.math3.fitting Classes to perform curve fitting. -
-
Uses of WeightedObservedPoint in org.apache.commons.math3.fitting
Methods in org.apache.commons.math3.fitting that return WeightedObservedPoint Modifier and Type Method Description WeightedObservedPoint[]CurveFitter. getObservations()Deprecated.Get the observed points.Methods in org.apache.commons.math3.fitting that return types with arguments of type WeightedObservedPoint Modifier and Type Method Description java.util.List<WeightedObservedPoint>WeightedObservedPoints. toList()Gets a snapshot of the observed points.Methods in org.apache.commons.math3.fitting with parameters of type WeightedObservedPoint Modifier and Type Method Description voidWeightedObservedPoints. add(WeightedObservedPoint observed)Adds a point to the sample.voidCurveFitter. addObservedPoint(WeightedObservedPoint observed)Deprecated.Add an observed weighted (x,y) point to the sample.Method parameters in org.apache.commons.math3.fitting with type arguments of type WeightedObservedPoint Modifier and Type Method Description double[]AbstractCurveFitter. fit(java.util.Collection<WeightedObservedPoint> points)Fits a curve.protected abstract LeastSquaresProblemAbstractCurveFitter. getProblem(java.util.Collection<WeightedObservedPoint> points)Creates a least squares problem corresponding to the appropriate curve.protected LeastSquaresProblemGaussianCurveFitter. getProblem(java.util.Collection<WeightedObservedPoint> observations)Creates a least squares problem corresponding to the appropriate curve.protected LeastSquaresProblemHarmonicCurveFitter. getProblem(java.util.Collection<WeightedObservedPoint> observations)Creates a least squares problem corresponding to the appropriate curve.protected LeastSquaresProblemPolynomialCurveFitter. getProblem(java.util.Collection<WeightedObservedPoint> observations)Creates a least squares problem corresponding to the appropriate curve.protected LeastSquaresProblemSimpleCurveFitter. getProblem(java.util.Collection<WeightedObservedPoint> observations)Creates a least squares problem corresponding to the appropriate curve.Constructors in org.apache.commons.math3.fitting with parameters of type WeightedObservedPoint Constructor Description ParameterGuesser(WeightedObservedPoint[] observations)Constructs instance with the specified observed points.ParameterGuesser(WeightedObservedPoint[] observations)Simple constructor.Constructor parameters in org.apache.commons.math3.fitting with type arguments of type WeightedObservedPoint Constructor Description ParameterGuesser(java.util.Collection<WeightedObservedPoint> observations)Constructs instance with the specified observed points.ParameterGuesser(java.util.Collection<WeightedObservedPoint> observations)Simple constructor.TheoreticalValuesFunction(ParametricUnivariateFunction f, java.util.Collection<WeightedObservedPoint> observations)
-