Uses of Interface
org.hipparchus.analysis.ParametricUnivariateFunction
-
Packages that use ParametricUnivariateFunction Package Description org.hipparchus.analysis.function Thefunction
package contains function objects that wrap the methods contained inMath
, as well as common mathematical functions such as the gaussian and sinc functions.org.hipparchus.analysis.polynomials Univariate real polynomials implementations, seen as differentiable univariate real functions.org.hipparchus.fitting Classes to perform curve fitting. -
-
Uses of ParametricUnivariateFunction in org.hipparchus.analysis.function
Classes in org.hipparchus.analysis.function that implement ParametricUnivariateFunction Modifier and Type Class Description static class
Gaussian.Parametric
Parametric function where the input array contains the parameters of the Gaussian, ordered as follows: Norm Mean Standard deviationstatic class
HarmonicOscillator.Parametric
Parametric function where the input array contains the parameters of the harmonic oscillator function, ordered as follows: Amplitude Angular frequency Phasestatic class
Logistic.Parametric
Parametric function where the input array contains the parameters of thelogistic function
, ordered as follows: k m b q a nstatic class
Logit.Parametric
Parametric function where the input array contains the parameters of the logit function, ordered as follows: Lower bound Higher boundstatic class
Sigmoid.Parametric
Parametric function where the input array contains the parameters of thesigmoid function
, ordered as follows: Lower asymptote Higher asymptote -
Uses of ParametricUnivariateFunction in org.hipparchus.analysis.polynomials
Classes in org.hipparchus.analysis.polynomials that implement ParametricUnivariateFunction Modifier and Type Class Description static class
PolynomialFunction.Parametric
Dedicated parametric polynomial class. -
Uses of ParametricUnivariateFunction in org.hipparchus.fitting
Methods in org.hipparchus.fitting with parameters of type ParametricUnivariateFunction Modifier and Type Method Description static SimpleCurveFitter
SimpleCurveFitter. create(ParametricUnivariateFunction f, double[] start)
Creates a curve fitter.Constructors in org.hipparchus.fitting with parameters of type ParametricUnivariateFunction Constructor Description TheoreticalValuesFunction(ParametricUnivariateFunction f, Collection<WeightedObservedPoint> observations)
-