public interface UnivariateDifferentiableFunction extends UnivariateFunction
This interface represents a simple function which computes both the value and the first derivative of a mathematical function. The derivative is computed with respect to the input variable.
Modifier and Type | Method and Description |
---|---|
DerivativeStructure |
value(DerivativeStructure t)
Simple mathematical function.
|
value
DerivativeStructure value(DerivativeStructure t) throws MathIllegalArgumentException
UnivariateDifferentiableFunction
classes compute both the
value and the first derivative of the function.
t
- function input valueMathIllegalArgumentException
- if t is inconsistent with the
function's free parameters or orderCopyright © 2016–2020 Hipparchus.org. All rights reserved.