Package org.hipparchus.analysis
Interface MultivariateMatrixFunction
- All Known Implementing Classes:
JacobianFunction
public interface MultivariateMatrixFunction
An interface representing a multivariate matrix function.
-
Method Summary
Modifier and TypeMethodDescriptiondouble[][]
value
(double[] point) Compute the value for the function at the given point.
-
Method Details
-
value
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:
IllegalArgumentException
- if point's dimension is wrong
-