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 ComposableFunctionComposableFunction. ABSTheFastMath.absmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ACOSTheFastMath.absmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ASINTheFastMath.asinmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ATANTheFastMath.atanmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. CBRTTheFastMath.cbrtmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. CEILTheFastMath.ceilmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. COSTheFastMath.cosmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. COSHTheFastMath.coshmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. EXPTheFastMath.expmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. EXPM1TheFastMath.expm1method wrapped as aComposableFunction.static ComposableFunctionComposableFunction. FLOORTheFastMath.floormethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. IDENTITYThe identity function.static ComposableFunctionComposableFunction. INVERTThe invert operator wrapped as aComposableFunction.static ComposableFunctionComposableFunction. LOGTheFastMath.logmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. LOG10TheFastMath.log10method wrapped as aComposableFunction.static ComposableFunctionComposableFunction. LOG1PTheFastMath.log1pmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. NEGATEThe - operator wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ONEThe constant function always returning 1.static ComposableFunctionComposableFunction. RINTTheFastMath.rintmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. SIGNUMTheFastMath.signummethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. SINTheFastMath.sinmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. SINHTheFastMath.sinhmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. SQRTTheFastMath.sqrtmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. TANTheFastMath.tanmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. TANHTheFastMath.tanhmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ULPTheFastMath.ulpmethod wrapped as aComposableFunction.static ComposableFunctionComposableFunction. ZEROThe constant function always returning 0.Methods in org.apache.commons.math.analysis that return ComposableFunction Modifier and Type Method Description ComposableFunctionComposableFunction. add(double a)Return a function adding a constant term to the instance.ComposableFunctionComposableFunction. add(UnivariateRealFunction f)Return a function adding the instance and another function.ComposableFunctionComposableFunction. combine(UnivariateRealFunction f, BivariateRealFunction combiner)Return a function combining the instance and another function.ComposableFunctionComposableFunction. divide(UnivariateRealFunction f)Return a function dividing the instance by another function.ComposableFunctionBinaryFunction. fix1stArgument(double fixedX)Deprecated.Get a composable function by fixing the first argument of the instance.ComposableFunctionBinaryFunction. fix2ndArgument(double fixedY)Deprecated.Get a composable function by fixing the second argument of the instance.ComposableFunctionComposableFunction. multiply(double scaleFactor)Return a function scaling the instance by a constant factor.ComposableFunctionComposableFunction. multiply(UnivariateRealFunction f)Return a function multiplying the instance and another function.ComposableFunctionComposableFunction. of(UnivariateRealFunction f)Precompose the instance with another function.ComposableFunctionComposableFunction. postCompose(UnivariateRealFunction f)Postcompose the instance with another function.ComposableFunctionComposableFunction. subtract(UnivariateRealFunction f)Return a function subtracting another function from the instance.
-