Package | Description |
---|---|
org.apache.commons.math.analysis |
Parent package for common numerical analysis procedures, including root finding,
function interpolation and integration.
|
Modifier and Type | Field and Description |
---|---|
static ComposableFunction |
ComposableFunction.ABS
The
FastMath.abs method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.ACOS
The
FastMath.abs method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.ASIN
The
FastMath.asin method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.ATAN
The
FastMath.atan method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.CBRT
The
FastMath.cbrt method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.CEIL
The
FastMath.ceil method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.COS
The
FastMath.cos method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.COSH
The
FastMath.cosh method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.EXP
The
FastMath.exp method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.EXPM1
The
FastMath.expm1 method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.FLOOR
The
FastMath.floor method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.IDENTITY
The identity function.
|
static ComposableFunction |
ComposableFunction.INVERT
The invert operator wrapped as a
ComposableFunction . |
static ComposableFunction |
ComposableFunction.LOG
The
FastMath.log method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.LOG10
The
FastMath.log10 method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.LOG1P
The
FastMath.log1p method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.NEGATE
The - operator wrapped as a
ComposableFunction . |
static ComposableFunction |
ComposableFunction.ONE
The constant function always returning 1.
|
static ComposableFunction |
ComposableFunction.RINT
The
FastMath.rint method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.SIGNUM
The
FastMath.signum method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.SIN
The
FastMath.sin method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.SINH
The
FastMath.sinh method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.SQRT
The
FastMath.sqrt method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.TAN
The
FastMath.tan method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.TANH
The
FastMath.tanh method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.ULP
The
FastMath.ulp method wrapped as a ComposableFunction . |
static ComposableFunction |
ComposableFunction.ZERO
The constant function always returning 0.
|
Modifier and Type | Method and 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.
|
Copyright © 2003–2015. All rights reserved.