Class PolynomialFunction.Parametric
- java.lang.Object
-
- org.hipparchus.analysis.polynomials.PolynomialFunction.Parametric
-
- All Implemented Interfaces:
ParametricUnivariateFunction
- Enclosing class:
- PolynomialFunction
public static class PolynomialFunction.Parametric extends Object implements ParametricUnivariateFunction
Dedicated parametric polynomial class.
-
-
Constructor Summary
Constructors Constructor Description Parametric()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
gradient(double x, double... parameters)
Compute the gradient of the function with respect to its parameters.double
value(double x, double... parameters)
Compute the value of the function.
-
-
-
Method Detail
-
gradient
public double[] gradient(double x, double... parameters)
Compute the gradient of the function with respect to its parameters.- Specified by:
gradient
in interfaceParametricUnivariateFunction
- Parameters:
x
- Point for which the function value should be computed.parameters
- Function parameters.- Returns:
- the value.
-
value
public double value(double x, double... parameters) throws MathIllegalArgumentException
Compute the value of the function.- Specified by:
value
in interfaceParametricUnivariateFunction
- Parameters:
x
- Point for which the function value should be computed.parameters
- Function parameters.- Returns:
- the value.
- Throws:
MathIllegalArgumentException
-
-