Package org.hipparchus.analysis
Interface FieldMultivariateMatrixFunction
public interface FieldMultivariateMatrixFunction
An interface representing a matrix multivariate function for any field type.
- Since:
- 2.2
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault <T extends CalculusFieldElement<T>>
CalculusFieldMultivariateMatrixFunction<T>Convert to aCalculusFieldMultivariateMatrixFunction
with a specific type.<T extends CalculusFieldElement<T>>
T[][]value
(T... x) Compute the value of the function.
-
Method Details
-
toCalculusFieldMultivariateMatrixFunction
default <T extends CalculusFieldElement<T>> CalculusFieldMultivariateMatrixFunction<T> toCalculusFieldMultivariateMatrixFunction(Field<T> field) Convert to aCalculusFieldMultivariateMatrixFunction
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
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.
-