Uses of Interface
org.apache.commons.math3.analysis.DifferentiableUnivariateFunction
Packages that use DifferentiableUnivariateFunction
Package
Description
Parent package for common numerical analysis procedures, including root finding,
function interpolation and integration.
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 polynomials implementations, seen as differentiable
univariate real functions.
Root finding algorithms, for univariate real functions.
-
Uses of DifferentiableUnivariateFunction in org.apache.commons.math3.analysis
Methods in org.apache.commons.math3.analysis that return DifferentiableUnivariateFunctionModifier and TypeMethodDescriptionFunctionUtils.add
(DifferentiableUnivariateFunction... f) Deprecated.FunctionUtils.compose
(DifferentiableUnivariateFunction... f) Deprecated.as of 3.1 replaced byFunctionUtils.compose(UnivariateDifferentiableFunction...)
FunctionUtils.multiply
(DifferentiableUnivariateFunction... f) Deprecated.as of 3.1 replaced byFunctionUtils.multiply(UnivariateDifferentiableFunction...)
FunctionUtils.toDifferentiableUnivariateFunction
(UnivariateDifferentiableFunction f) Deprecated.this conversion method is temporary in version 3.1, as theDifferentiableUnivariateFunction
interface itself is deprecatedMethods in org.apache.commons.math3.analysis with parameters of type DifferentiableUnivariateFunctionModifier and TypeMethodDescriptionFunctionUtils.add
(DifferentiableUnivariateFunction... f) Deprecated.as of 3.1 replaced byFunctionUtils.add(UnivariateDifferentiableFunction...)
FunctionUtils.compose
(DifferentiableUnivariateFunction... f) Deprecated.as of 3.1 replaced byFunctionUtils.compose(UnivariateDifferentiableFunction...)
FunctionUtils.multiply
(DifferentiableUnivariateFunction... f) Deprecated.as of 3.1 replaced byFunctionUtils.multiply(UnivariateDifferentiableFunction...)
FunctionUtils.toUnivariateDifferential
(DifferentiableUnivariateFunction f) Deprecated.this conversion method is temporary in version 3.1, as theDifferentiableUnivariateFunction
interface itself is deprecated -
Uses of DifferentiableUnivariateFunction in org.apache.commons.math3.analysis.function
Classes in org.apache.commons.math3.analysis.function that implement DifferentiableUnivariateFunctionModifier and TypeClassDescriptionclass
Arc-cosine function.class
Hyperbolic arc-cosine function.class
Arc-sine function.class
Hyperbolic arc-sine function.class
Arc-tangent function.class
Hyperbolic arc-tangent function.class
Cube root function.class
Constant function.class
Cosine function.class
Hyperbolic cosine function.class
Exponential function.class
ex-1
function.class
Gaussian function.class
simple harmonic oscillator function.class
Identity function.class
Inverse function.class
Natural logarithm function.class
Base 10 logarithm function.class
log(1 + p)
function.class
Generalised logistic function.class
Logit function.class
Minus function.class
Power function.class
Sigmoid function.class
Sine function.class
Sinc function, defined byclass
Hyperbolic sine function.class
Square-root function.class
Tangent function.class
Hyperbolic tangent function.Methods in org.apache.commons.math3.analysis.function that return DifferentiableUnivariateFunctionModifier and TypeMethodDescriptionConstant.derivative()
Deprecated.as of 3.1, replaced byConstant.value(DerivativeStructure)
Cosh.derivative()
Deprecated.as of 3.1, replaced byCosh.value(DerivativeStructure)
Identity.derivative()
Deprecated.as of 3.1, replaced byIdentity.value(DerivativeStructure)
Minus.derivative()
Deprecated.as of 3.1, replaced byMinus.value(DerivativeStructure)
Sin.derivative()
Deprecated.as of 3.1, replaced bySin.value(DerivativeStructure)
Sinh.derivative()
Deprecated.as of 3.1, replaced bySinh.value(DerivativeStructure)
-
Uses of DifferentiableUnivariateFunction in org.apache.commons.math3.analysis.polynomials
Classes in org.apache.commons.math3.analysis.polynomials that implement DifferentiableUnivariateFunctionModifier and TypeClassDescriptionclass
Immutable representation of a real polynomial function with real coefficients.class
Represents a polynomial spline function. -
Uses of DifferentiableUnivariateFunction in org.apache.commons.math3.analysis.solvers
Methods in org.apache.commons.math3.analysis.solvers with parameters of type DifferentiableUnivariateFunctionModifier and TypeMethodDescriptionprotected void
AbstractDifferentiableUnivariateSolver.setup
(int maxEval, DifferentiableUnivariateFunction f, double min, double max, double startValue) Deprecated.Prepare for computation.double
NewtonSolver.solve
(int maxEval, DifferentiableUnivariateFunction f, double min, double max) Deprecated.Find a zero near the midpoint ofmin
andmax
.
FunctionUtils.add(UnivariateDifferentiableFunction...)