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 theDifferentiableUnivariateFunctioninterface 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 theDifferentiableUnivariateFunctioninterface 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 TypeClassDescriptionclassArc-cosine function.classHyperbolic arc-cosine function.classArc-sine function.classHyperbolic arc-sine function.classArc-tangent function.classHyperbolic arc-tangent function.classCube root function.classConstant function.classCosine function.classHyperbolic cosine function.classExponential function.classex-1function.classGaussian function.classsimple harmonic oscillator function.classIdentity function.classInverse function.classNatural logarithm function.classBase 10 logarithm function.classlog(1 + p)function.classGeneralised logistic function.classLogit function.classMinus function.classPower function.classSigmoid function.classSine function.classSinc function, defined byclassHyperbolic sine function.classSquare-root function.classTangent function.classHyperbolic 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 TypeClassDescriptionclassImmutable representation of a real polynomial function with real coefficients.classRepresents 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 voidAbstractDifferentiableUnivariateSolver.setup(int maxEval, DifferentiableUnivariateFunction f, double min, double max, double startValue) Deprecated.Prepare for computation.doubleNewtonSolver.solve(int maxEval, DifferentiableUnivariateFunction f, double min, double max) Deprecated.Find a zero near the midpoint ofminandmax.
FunctionUtils.add(UnivariateDifferentiableFunction...)