Uses of Class
org.apache.commons.math3.analysis.differentiation.DerivativeStructure
Packages that use DerivativeStructure
Package
Description
This package holds the main interfaces and basic building block classes
dealing with differentiation.
The
function
package contains function objects that wrap the
methods contained in Math
, as well as common
mathematical functions such as the gaussian and sinc functions.Univariate real functions interpolation algorithms.
Univariate real polynomials implementations, seen as differentiable
univariate real functions.
Root finding algorithms, for univariate real functions.
-
Uses of DerivativeStructure in org.apache.commons.math3.analysis.differentiation
Methods in org.apache.commons.math3.analysis.differentiation that return DerivativeStructureModifier and TypeMethodDescriptionDerivativeStructure.abs()
absolute value.DerivativeStructure.acos()
Arc cosine operation.DerivativeStructure.acosh()
Inverse hyperbolic cosine operation.DerivativeStructure.add
(double a) '+' operator.DerivativeStructure.add
(DerivativeStructure a) Compute this + a.DerivativeStructure.asin()
Arc sine operation.DerivativeStructure.asinh()
Inverse hyperbolic sine operation.DerivativeStructure.atan()
Arc tangent operation.DerivativeStructure.atan2
(DerivativeStructure x) Two arguments arc tangent operation.static DerivativeStructure
DerivativeStructure.atan2
(DerivativeStructure y, DerivativeStructure x) Two arguments arc tangent operation.DerivativeStructure.atanh()
Inverse hyperbolic tangent operation.DerivativeStructure.cbrt()
Cubic root.DerivativeStructure.ceil()
Get the smallest whole number larger than instance.DerivativeStructure.compose
(double... f) Compute composition of the instance by a univariate function.DerivativeStructure.copySign
(double sign) Returns the instance with the sign of the argument.DerivativeStructure.copySign
(DerivativeStructure sign) Returns the instance with the sign of the argument.DerivativeStructure.cos()
Cosine operation.DerivativeStructure.cosh()
Hyperbolic cosine operation.DerivativeStructure.createConstant
(double c) Create a constant compatible with instance order and number of parameters.DerivativeStructure.divide
(double a) '÷' operator.DerivativeStructure.divide
(DerivativeStructure a) Compute this ÷ a.DerivativeStructure.exp()
Exponential.DerivativeStructure.expm1()
Exponential minus 1.DerivativeStructure.floor()
Get the largest whole number smaller than instance.DerivativeStructure.hypot
(DerivativeStructure y) Returns the hypotenuse of a triangle with sidesthis
andy
- sqrt(this2 +y2) avoiding intermediate overflow or underflow.static DerivativeStructure
DerivativeStructure.hypot
(DerivativeStructure x, DerivativeStructure y) Returns the hypotenuse of a triangle with sidesx
andy
- sqrt(x2 +y2) avoiding intermediate overflow or underflow.DerivativeStructure.linearCombination
(double[] a, DerivativeStructure[] b) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2, double a3, DerivativeStructure b3) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2, double a3, DerivativeStructure b3, double a4, DerivativeStructure b4) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure[] a, DerivativeStructure[] b) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2, DerivativeStructure a3, DerivativeStructure b3) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2, DerivativeStructure a3, DerivativeStructure b3, DerivativeStructure a4, DerivativeStructure b4) Compute a linear combination.DerivativeStructure.log()
Natural logarithm.DerivativeStructure.log10()
Base 10 logarithm.DerivativeStructure.log1p()
Shifted natural logarithm.DerivativeStructure.multiply
(double a) '×' operator.DerivativeStructure.multiply
(int n) Compute n × this.DerivativeStructure.multiply
(DerivativeStructure a) Compute this × a.DerivativeStructure.negate()
Returns the additive inverse ofthis
element.DerivativeStructure.pow
(double p) Power operation.static DerivativeStructure
DerivativeStructure.pow
(double a, DerivativeStructure x) Compute ax where a is a double and x aDerivativeStructure
DerivativeStructure.pow
(int n) Integer power operation.DerivativeStructure.pow
(DerivativeStructure e) Power operation.DerivativeStructure.reciprocal()
Returns the multiplicative inverse ofthis
element.DerivativeStructure.remainder
(double a) IEEE remainder operator.DerivativeStructure.remainder
(DerivativeStructure a) IEEE remainder operator.DerivativeStructure.rint()
Get the whole number that is the nearest to the instance, or the even one if x is exactly half way between two integers.DerivativeStructure.rootN
(int n) Nth root.DerivativeStructure.scalb
(int n) Multiply the instance by a power of 2.DerivativeStructure.signum()
Compute the signum of the instance.DerivativeStructure.sin()
Sine operation.DerivativeStructure.sinh()
Hyperbolic sine operation.DerivativeStructure.sqrt()
Square root.DerivativeStructure.subtract
(double a) '-' operator.DerivativeStructure.subtract
(DerivativeStructure a) Compute this - a.DerivativeStructure.tan()
Tangent operation.DerivativeStructure.tanh()
Hyperbolic tangent operation.DerivativeStructure.toDegrees()
Convert radians to degrees, with error of less than 0.5 ULPDerivativeStructure.toRadians()
Convert degrees to radians, with error of less than 0.5 ULPMultivariateDifferentiableFunction.value
(DerivativeStructure[] point) Compute the value for the function at the given point.MultivariateDifferentiableVectorFunction.value
(DerivativeStructure[] point) Compute the value for the function at the given point.UnivariateDifferentiableFunction.value
(DerivativeStructure t) Simple mathematical function.UnivariateDifferentiableMatrixFunction.value
(DerivativeStructure x) Compute the value for the function.UnivariateDifferentiableVectorFunction.value
(DerivativeStructure x) Compute the value for the function.Methods in org.apache.commons.math3.analysis.differentiation that return types with arguments of type DerivativeStructureModifier and TypeMethodDescriptionDerivativeStructure.getField()
Get theField
to which the instance belongs.Methods in org.apache.commons.math3.analysis.differentiation with parameters of type DerivativeStructureModifier and TypeMethodDescriptionDerivativeStructure.add
(DerivativeStructure a) Compute this + a.DerivativeStructure.atan2
(DerivativeStructure x) Two arguments arc tangent operation.static DerivativeStructure
DerivativeStructure.atan2
(DerivativeStructure y, DerivativeStructure x) Two arguments arc tangent operation.DerivativeStructure.copySign
(DerivativeStructure sign) Returns the instance with the sign of the argument.DerivativeStructure.divide
(DerivativeStructure a) Compute this ÷ a.DerivativeStructure.hypot
(DerivativeStructure y) Returns the hypotenuse of a triangle with sidesthis
andy
- sqrt(this2 +y2) avoiding intermediate overflow or underflow.static DerivativeStructure
DerivativeStructure.hypot
(DerivativeStructure x, DerivativeStructure y) Returns the hypotenuse of a triangle with sidesx
andy
- sqrt(x2 +y2) avoiding intermediate overflow or underflow.DerivativeStructure.linearCombination
(double[] a, DerivativeStructure[] b) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2, double a3, DerivativeStructure b3) Compute a linear combination.DerivativeStructure.linearCombination
(double a1, DerivativeStructure b1, double a2, DerivativeStructure b2, double a3, DerivativeStructure b3, double a4, DerivativeStructure b4) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure[] a, DerivativeStructure[] b) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2, DerivativeStructure a3, DerivativeStructure b3) Compute a linear combination.DerivativeStructure.linearCombination
(DerivativeStructure a1, DerivativeStructure b1, DerivativeStructure a2, DerivativeStructure b2, DerivativeStructure a3, DerivativeStructure b3, DerivativeStructure a4, DerivativeStructure b4) Compute a linear combination.DerivativeStructure.multiply
(DerivativeStructure a) Compute this × a.static DerivativeStructure
DerivativeStructure.pow
(double a, DerivativeStructure x) Compute ax where a is a double and x aDerivativeStructure
DerivativeStructure.pow
(DerivativeStructure e) Power operation.DerivativeStructure.remainder
(DerivativeStructure a) IEEE remainder operator.DerivativeStructure.subtract
(DerivativeStructure a) Compute this - a.MultivariateDifferentiableFunction.value
(DerivativeStructure[] point) Compute the value for the function at the given point.MultivariateDifferentiableVectorFunction.value
(DerivativeStructure[] point) Compute the value for the function at the given point.UnivariateDifferentiableFunction.value
(DerivativeStructure t) Simple mathematical function.UnivariateDifferentiableMatrixFunction.value
(DerivativeStructure x) Compute the value for the function.UnivariateDifferentiableVectorFunction.value
(DerivativeStructure x) Compute the value for the function.Constructors in org.apache.commons.math3.analysis.differentiation with parameters of type DerivativeStructureModifierConstructorDescriptionDerivativeStructure
(double a1, DerivativeStructure ds1, double a2, DerivativeStructure ds2) Linear combination constructor.DerivativeStructure
(double a1, DerivativeStructure ds1, double a2, DerivativeStructure ds2, double a3, DerivativeStructure ds3) Linear combination constructor.DerivativeStructure
(double a1, DerivativeStructure ds1, double a2, DerivativeStructure ds2, double a3, DerivativeStructure ds3, double a4, DerivativeStructure ds4) Linear combination constructor. -
Uses of DerivativeStructure in org.apache.commons.math3.analysis.function
Methods in org.apache.commons.math3.analysis.function that return DerivativeStructureModifier and TypeMethodDescriptionAcos.value
(DerivativeStructure t) Simple mathematical function.Acosh.value
(DerivativeStructure t) Simple mathematical function.Asin.value
(DerivativeStructure t) Simple mathematical function.Asinh.value
(DerivativeStructure t) Simple mathematical function.Atan.value
(DerivativeStructure t) Simple mathematical function.Atanh.value
(DerivativeStructure t) Simple mathematical function.Cbrt.value
(DerivativeStructure t) Simple mathematical function.Constant.value
(DerivativeStructure t) Simple mathematical function.Cos.value
(DerivativeStructure t) Simple mathematical function.Cosh.value
(DerivativeStructure t) Simple mathematical function.Exp.value
(DerivativeStructure t) Simple mathematical function.Expm1.value
(DerivativeStructure t) Simple mathematical function.Gaussian.value
(DerivativeStructure t) Simple mathematical function.HarmonicOscillator.value
(DerivativeStructure t) Simple mathematical function.Identity.value
(DerivativeStructure t) Simple mathematical function.Inverse.value
(DerivativeStructure t) Simple mathematical function.Log.value
(DerivativeStructure t) Simple mathematical function.Log10.value
(DerivativeStructure t) Simple mathematical function.Log1p.value
(DerivativeStructure t) Simple mathematical function.Logistic.value
(DerivativeStructure t) Simple mathematical function.Logit.value
(DerivativeStructure t) Simple mathematical function.Minus.value
(DerivativeStructure t) Simple mathematical function.Power.value
(DerivativeStructure t) Simple mathematical function.Sigmoid.value
(DerivativeStructure t) Simple mathematical function.Sin.value
(DerivativeStructure t) Simple mathematical function.Sinc.value
(DerivativeStructure t) Simple mathematical function.Sinh.value
(DerivativeStructure t) Simple mathematical function.Sqrt.value
(DerivativeStructure t) Simple mathematical function.Tan.value
(DerivativeStructure t) Simple mathematical function.Tanh.value
(DerivativeStructure t) Simple mathematical function.Methods in org.apache.commons.math3.analysis.function with parameters of type DerivativeStructureModifier and TypeMethodDescriptionAcos.value
(DerivativeStructure t) Simple mathematical function.Acosh.value
(DerivativeStructure t) Simple mathematical function.Asin.value
(DerivativeStructure t) Simple mathematical function.Asinh.value
(DerivativeStructure t) Simple mathematical function.Atan.value
(DerivativeStructure t) Simple mathematical function.Atanh.value
(DerivativeStructure t) Simple mathematical function.Cbrt.value
(DerivativeStructure t) Simple mathematical function.Constant.value
(DerivativeStructure t) Simple mathematical function.Cos.value
(DerivativeStructure t) Simple mathematical function.Cosh.value
(DerivativeStructure t) Simple mathematical function.Exp.value
(DerivativeStructure t) Simple mathematical function.Expm1.value
(DerivativeStructure t) Simple mathematical function.Gaussian.value
(DerivativeStructure t) Simple mathematical function.HarmonicOscillator.value
(DerivativeStructure t) Simple mathematical function.Identity.value
(DerivativeStructure t) Simple mathematical function.Inverse.value
(DerivativeStructure t) Simple mathematical function.Log.value
(DerivativeStructure t) Simple mathematical function.Log10.value
(DerivativeStructure t) Simple mathematical function.Log1p.value
(DerivativeStructure t) Simple mathematical function.Logistic.value
(DerivativeStructure t) Simple mathematical function.Logit.value
(DerivativeStructure t) Simple mathematical function.Minus.value
(DerivativeStructure t) Simple mathematical function.Power.value
(DerivativeStructure t) Simple mathematical function.Sigmoid.value
(DerivativeStructure t) Simple mathematical function.Sin.value
(DerivativeStructure t) Simple mathematical function.Sinc.value
(DerivativeStructure t) Simple mathematical function.Sinh.value
(DerivativeStructure t) Simple mathematical function.Sqrt.value
(DerivativeStructure t) Simple mathematical function.Tan.value
(DerivativeStructure t) Simple mathematical function.Tanh.value
(DerivativeStructure t) Simple mathematical function. -
Uses of DerivativeStructure in org.apache.commons.math3.analysis.interpolation
Methods in org.apache.commons.math3.analysis.interpolation that return DerivativeStructureModifier and TypeMethodDescriptionHermiteInterpolator.value
(DerivativeStructure x) Interpolate value at a specified abscissa.Methods in org.apache.commons.math3.analysis.interpolation with parameters of type DerivativeStructureModifier and TypeMethodDescriptionHermiteInterpolator.value
(DerivativeStructure x) Interpolate value at a specified abscissa. -
Uses of DerivativeStructure in org.apache.commons.math3.analysis.polynomials
Methods in org.apache.commons.math3.analysis.polynomials that return DerivativeStructureModifier and TypeMethodDescriptionPolynomialFunction.value
(DerivativeStructure t) Simple mathematical function.PolynomialFunctionNewtonForm.value
(DerivativeStructure t) Simple mathematical function.PolynomialSplineFunction.value
(DerivativeStructure t) Simple mathematical function.Methods in org.apache.commons.math3.analysis.polynomials with parameters of type DerivativeStructureModifier and TypeMethodDescriptionPolynomialFunction.value
(DerivativeStructure t) Simple mathematical function.PolynomialFunctionNewtonForm.value
(DerivativeStructure t) Simple mathematical function.PolynomialSplineFunction.value
(DerivativeStructure t) Simple mathematical function. -
Uses of DerivativeStructure in org.apache.commons.math3.analysis.solvers
Methods in org.apache.commons.math3.analysis.solvers that return DerivativeStructureModifier and TypeMethodDescriptionprotected DerivativeStructure
AbstractUnivariateDifferentiableSolver.computeObjectiveValueAndDerivative
(double point) Compute the objective function value.