Package org.hipparchus.analysis
Interface MultivariateVectorFunction
- All Known Subinterfaces:
Constraint
,MultivariateDifferentiableVectorFunction
,VectorDifferentiableFunction
- All Known Implementing Classes:
BoundedConstraint
,EqualityConstraint
,GradientFunction
,InequalityConstraint
,LinearBoundedConstraint
,LinearEqualityConstraint
,LinearInequalityConstraint
public interface MultivariateVectorFunction
An interface representing a multivariate vectorial 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
-