Uses of Interface
org.hipparchus.analysis.differentiation.Derivative
-
Packages that use Derivative Package Description org.hipparchus.analysis.differentiation This package holds the main interfaces and basic building block classes dealing with differentiation.org.hipparchus.analysis.function Thefunction
package contains function objects that wrap the methods contained inMath
, as well as common mathematical functions such as the gaussian and sinc functions.org.hipparchus.analysis.interpolation Univariate real functions interpolation algorithms.org.hipparchus.analysis.polynomials Univariate real polynomials implementations, seen as differentiable univariate real functions. -
-
Uses of Derivative in org.hipparchus.analysis.differentiation
Classes in org.hipparchus.analysis.differentiation that implement Derivative Modifier and Type Class Description class
DerivativeStructure
Class representing both the value and the differentials of a function.class
Gradient
Class representing both the value and the differentials of a function.class
UnivariateDerivative<T extends UnivariateDerivative<T>>
Abstract class representing both the value and the differentials of a function.class
UnivariateDerivative1
Class representing both the value and the differentials of a function.class
UnivariateDerivative2
Class representing both the value and the differentials of a function.Methods in org.hipparchus.analysis.differentiation with type parameters of type Derivative Modifier and Type Method Description <T extends Derivative<T>>
TUnivariateDifferentiableFunction. value(T x)
Compute the value for the function.<T extends Derivative<T>>
T[][]UnivariateDifferentiableMatrixFunction. value(T x)
Compute the value for the function.<T extends Derivative<T>>
T[]UnivariateDifferentiableVectorFunction. value(T x)
Compute the value for the function.Methods in org.hipparchus.analysis.differentiation that return Derivative Modifier and Type Method Description <T extends Derivative<T>>
T[][]UnivariateDifferentiableMatrixFunction. value(T x)
Compute the value for the function.<T extends Derivative<T>>
T[]UnivariateDifferentiableVectorFunction. value(T x)
Compute the value for the function. -
Uses of Derivative in org.hipparchus.analysis.function
Methods in org.hipparchus.analysis.function with type parameters of type Derivative Modifier and Type Method Description <T extends Derivative<T>>
TAbs. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAcos. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAcosh. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAsin. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAsinh. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAtan. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TAtanh. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TCbrt. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TCeil. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TConstant. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TCos. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TCosh. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TExp. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TExpm1. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TFloor. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TGaussian. value(T t)
Compute the value for the function.<T extends Derivative<T>>
THarmonicOscillator. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TIdentity. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TInverse. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TLog. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TLog10. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TLog1p. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TLogistic. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TLogit. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TMinus. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TPower. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TRint. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TSigmoid. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TSin. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TSinc. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TSinh. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TSqrt. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TTan. value(T x)
Compute the value for the function.<T extends Derivative<T>>
TTanh. value(T x)
Compute the value for the function. -
Uses of Derivative in org.hipparchus.analysis.interpolation
Methods in org.hipparchus.analysis.interpolation with type parameters of type Derivative Modifier and Type Method Description <T extends Derivative<T>>
T[]HermiteInterpolator. value(T x)
Compute the value for the function.Methods in org.hipparchus.analysis.interpolation that return Derivative Modifier and Type Method Description <T extends Derivative<T>>
T[]HermiteInterpolator. value(T x)
Compute the value for the function. -
Uses of Derivative in org.hipparchus.analysis.polynomials
Methods in org.hipparchus.analysis.polynomials with type parameters of type Derivative Modifier and Type Method Description <T extends Derivative<T>>
TPolynomialFunction. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TPolynomialFunctionNewtonForm. value(T t)
Compute the value for the function.<T extends Derivative<T>>
TPolynomialSplineFunction. value(T t)
Compute the value for the function.
-