Uses of Class
org.apache.commons.math.analysis.ComposableFunction
Packages that use ComposableFunction
Package
Description
Parent package for common numerical analysis procedures, including root finding,
function interpolation and integration.
-
Uses of ComposableFunction in org.apache.commons.math.analysis
Fields in org.apache.commons.math.analysis declared as ComposableFunctionModifier and TypeFieldDescriptionstatic final ComposableFunction
ComposableFunction.ABS
TheFastMath.abs
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ACOS
TheFastMath.abs
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ASIN
TheFastMath.asin
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ATAN
TheFastMath.atan
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.CBRT
TheFastMath.cbrt
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.CEIL
TheFastMath.ceil
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.COS
TheFastMath.cos
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.COSH
TheFastMath.cosh
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.EXP
TheFastMath.exp
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.EXPM1
TheFastMath.expm1
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.FLOOR
TheFastMath.floor
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.IDENTITY
The identity function.static final ComposableFunction
ComposableFunction.INVERT
The invert operator wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.LOG
TheFastMath.log
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.LOG10
TheFastMath.log10
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.LOG1P
TheFastMath.log1p
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.NEGATE
The - operator wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ONE
The constant function always returning 1.static final ComposableFunction
ComposableFunction.RINT
TheFastMath.rint
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.SIGNUM
TheFastMath.signum
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.SIN
TheFastMath.sin
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.SINH
TheFastMath.sinh
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.SQRT
TheFastMath.sqrt
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.TAN
TheFastMath.tan
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.TANH
TheFastMath.tanh
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ULP
TheFastMath.ulp
method wrapped as aComposableFunction
.static final ComposableFunction
ComposableFunction.ZERO
The constant function always returning 0.Methods in org.apache.commons.math.analysis that return ComposableFunctionModifier and TypeMethodDescriptionComposableFunction.add
(double a) Return a function adding a constant term to the instance.ComposableFunction.add
(UnivariateRealFunction f) Return a function adding the instance and another function.ComposableFunction.combine
(UnivariateRealFunction f, BivariateRealFunction combiner) Return a function combining the instance and another function.ComposableFunction.divide
(UnivariateRealFunction f) Return a function dividing the instance by another function.BinaryFunction.fix1stArgument
(double fixedX) Deprecated.Get a composable function by fixing the first argument of the instance.BinaryFunction.fix2ndArgument
(double fixedY) Deprecated.Get a composable function by fixing the second argument of the instance.ComposableFunction.multiply
(double scaleFactor) Return a function scaling the instance by a constant factor.ComposableFunction.multiply
(UnivariateRealFunction f) Return a function multiplying the instance and another function.ComposableFunction.of
(UnivariateRealFunction f) Precompose the instance with another function.ComposableFunction.postCompose
(UnivariateRealFunction f) Postcompose the instance with another function.ComposableFunction.subtract
(UnivariateRealFunction f) Return a function subtracting another function from the instance.