Class UnivariateDerivative2

java.lang.Object
org.hipparchus.analysis.differentiation.UnivariateDerivative<UnivariateDerivative2>
org.hipparchus.analysis.differentiation.UnivariateDerivative2
All Implemented Interfaces:
Serializable, Comparable<UnivariateDerivative2>, Derivative<UnivariateDerivative2>, DifferentialAlgebra, CalculusFieldElement<UnivariateDerivative2>, FieldElement<UnivariateDerivative2>

public class UnivariateDerivative2 extends UnivariateDerivative<UnivariateDerivative2>
Class representing both the value and the differentials of a function.

This class is a stripped-down version of DerivativeStructure with only one free parameter and derivation order also limited to two. It should have less overhead than DerivativeStructure in its domain.

This class is an implementation of Rall's numbers. Rall's numbers are an extension to the real numbers used throughout mathematical expressions; they hold the derivative together with the value of a function.

UnivariateDerivative2 instances can be used directly thanks to the arithmetic operators to the mathematical functions provided as methods by this class (+, -, *, /, %, sin, cos ...).

Implementing complex expressions by hand using these classes is a tedious and error-prone task but has the advantage of having no limitation on the derivation order despite not requiring users to compute the derivatives by themselves.

Instances of this class are guaranteed to be immutable.

Since:
1.7
See Also: