UnivariateFunction
Acos
, Acosh
, Asin
, Asinh
, Atan
, Atanh
, Cbrt
, Constant
, Cos
, Cosh
, Exp
, Expm1
, Gaussian
, HarmonicOscillator
, Identity
, Inverse
, Log
, Log10
, Log1p
, Logistic
, Logit
, Minus
, PolynomialFunction
, PolynomialFunctionNewtonForm
, PolynomialSplineFunction
, Power
, Sigmoid
, Sin
, Sinc
, Sinh
, Sqrt
, Tan
, Tanh
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 | 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–2018 Hipparchus.org. All rights reserved.