org.apache.commons.math3.analysis.differentiation
Interface MultivariateDifferentiableVectorFunction
- All Superinterfaces:
- MultivariateVectorFunction
public interface MultivariateDifferentiableVectorFunction
- extends MultivariateVectorFunction
Extension of MultivariateVectorFunction
representing a
multivariate differentiable vectorial function.
- Since:
- 3.1
- Version:
- $Id: MultivariateDifferentiableVectorFunction.java 1462496 2013-03-29 14:56:08Z psteitz $
value
DerivativeStructure[] value(DerivativeStructure[] point)
throws MathIllegalArgumentException
- 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:
MathIllegalArgumentException
- if point
does not
satisfy the function's constraints (wrong dimension, argument out of bound,
or unsupported derivative order for example)
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.