Package org.hipparchus.analysis
Interface FieldMultivariateFunction
-
public interface FieldMultivariateFunction
An interface representing a scalar multivariate function for any field type.- Since:
- 2.2
- See Also:
MultivariateFunction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <T extends CalculusFieldElement<T>>
CalculusFieldMultivariateFunction<T>toCalculusFieldMultivariateFunction(Field<T> field)
Convert to aCalculusFieldMultivariateFunction
with a specific type.<T extends CalculusFieldElement<T>>
Tvalue(T... x)
Compute the value of the function.
-
-
-
Method Detail
-
toCalculusFieldMultivariateFunction
default <T extends CalculusFieldElement<T>> CalculusFieldMultivariateFunction<T> toCalculusFieldMultivariateFunction(Field<T> field)
Convert to aCalculusFieldMultivariateFunction
with a specific type.- Type Parameters:
T
- the type of the field elements- Parameters:
field
- field for the argument and value- Returns:
- converted function
-
value
<T extends CalculusFieldElement<T>> T value(T... x)
Compute the value of the function.- Type Parameters:
T
- the type of the field elements- Parameters:
x
- Point at which the function value should be computed.- Returns:
- the value of the function.
-
-