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 |
|---|---|
<T extends Derivative<T>> |
value(T x)
Compute the value for the function.
|
value<T extends Derivative<T>> T value(T x) throws MathIllegalArgumentException
T - the type of the field elementsx - the point for which the function value should be computedMathIllegalArgumentException - if x does not
satisfy the function's constraints (argument out of bound, or unsupported
derivative order for example)Copyright © 2016-2022 CS GROUP. All rights reserved.