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