Interface UnivariateDifferentiableVectorFunction
-
- All Superinterfaces:
UnivariateVectorFunction
- All Known Implementing Classes:
HermiteInterpolator
public interface UnivariateDifferentiableVectorFunction extends UnivariateVectorFunction
Extension ofUnivariateVectorFunction
representing a univariate differentiable vectorial function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends Derivative<T>>
T[]value(T x)
Compute the value for the function.-
Methods inherited from interface org.hipparchus.analysis.UnivariateVectorFunction
value
-
-
-
-
Method Detail
-
value
<T extends Derivative<T>> T[] value(T x) throws MathIllegalArgumentException
Compute the value for the function.- Type Parameters:
T
- the type of the field elements- Parameters:
x
- the point for which the function value should be computed- Returns:
- the value
- Throws:
MathIllegalArgumentException
- ifx
does not satisfy the function's constraints (argument out of bound, or unsupported derivative order for example)
-
-