Package org.apache.commons.math.analysis
Interface UnivariateVectorialFunction
-
- All Known Subinterfaces:
DifferentiableUnivariateVectorialFunction
public interface UnivariateVectorialFunctionAn interface representing a univariate vectorial function.- Since:
- 2.0
- Version:
- $Revision: 1073498 $ $Date: 2011-02-22 21:57:26 +0100 (mar. 22 févr. 2011) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[]value(double x)Compute the value for the function.
-
-
-
Method Detail
-
value
double[] value(double x) throws FunctionEvaluationExceptionCompute the value for the function.- Parameters:
x- the point for which the function value should be computed- Returns:
- the value
- Throws:
FunctionEvaluationException- if the function evaluation fails
-
-