Interface MultivariateDifferentiableVectorFunction
-
- All Superinterfaces:
MultivariateVectorFunction
public interface MultivariateDifferentiableVectorFunction extends MultivariateVectorFunction
Extension ofMultivariateVectorFunction
representing a multivariate differentiable vectorial function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DerivativeStructure[]
value(DerivativeStructure[] point)
Compute the value for the function at the given point.-
Methods inherited from interface org.hipparchus.analysis.MultivariateVectorFunction
value
-
-
-
-
Method Detail
-
value
DerivativeStructure[] value(DerivativeStructure[] point) throws MathIllegalArgumentException
Compute the value for the function at the given point.- Parameters:
point
- point at which the function must be evaluated- Returns:
- function value for the given point
- Throws:
MathIllegalArgumentException
- ifpoint
does not satisfy the function's constraints (wrong dimension, argument out of bound, or unsupported derivative order for example)
-
-