Class CurveFitter.OldTheoreticalValuesFunction
- java.lang.Object
-
- org.apache.commons.math3.optimization.fitting.CurveFitter.OldTheoreticalValuesFunction
-
- All Implemented Interfaces:
DifferentiableMultivariateVectorFunction
,MultivariateVectorFunction
- Enclosing class:
- CurveFitter<T extends ParametricUnivariateFunction>
@Deprecated private class CurveFitter.OldTheoreticalValuesFunction extends java.lang.Object implements DifferentiableMultivariateVectorFunction
Deprecated.Vectorial function computing function theoretical values.
-
-
Field Summary
Fields Modifier and Type Field Description private ParametricUnivariateFunction
f
Deprecated.Function to fit.
-
Constructor Summary
Constructors Constructor Description OldTheoreticalValuesFunction(ParametricUnivariateFunction f)
Deprecated.Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MultivariateMatrixFunction
jacobian()
Deprecated.Returns the jacobian function.double[]
value(double[] point)
Deprecated.Compute the value for the function at the given point.
-
-
-
Field Detail
-
f
private final ParametricUnivariateFunction f
Deprecated.Function to fit.
-
-
Constructor Detail
-
OldTheoreticalValuesFunction
OldTheoreticalValuesFunction(ParametricUnivariateFunction f)
Deprecated.Simple constructor.- Parameters:
f
- function to fit.
-
-
Method Detail
-
jacobian
public MultivariateMatrixFunction jacobian()
Deprecated.Returns the jacobian function.- Specified by:
jacobian
in interfaceDifferentiableMultivariateVectorFunction
- Returns:
- the jacobian function
-
value
public double[] value(double[] point)
Deprecated.Compute the value for the function at the given point.- Specified by:
value
in interfaceMultivariateVectorFunction
- Parameters:
point
- point at which the function must be evaluated- Returns:
- function value for the given point
-
-