Modifier and Type | Field and Description |
---|---|
static Function |
DoubleEvaluator.ABS
Returns the absolute value of a number
|
static Function |
DoubleEvaluator.ACOSINE
Returns the trigonometric arc-cosine of an angle.
|
static Function |
DoubleEvaluator.ASINE
Returns the trigonometric arc-sine of an angle.
|
static Function |
DoubleEvaluator.ATAN
Returns the trigonometric arc-tangent of an angle.
|
static Function |
DoubleEvaluator.AVERAGE
Returns the average of n numbers (n>=1)
|
static Function |
DoubleEvaluator.CEIL
Returns the smallest integer >= argument
|
static Function |
DoubleEvaluator.COSINE
Returns the trigonometric cosine of an angle.
|
static Function |
DoubleEvaluator.COSINEH
Returns the hyperbolic cosine of a number.
|
static Function |
DoubleEvaluator.FLOOR
Returns the largest integer <= argument
|
static Function |
DoubleEvaluator.LN
Returns the natural logarithm of a number
|
static Function |
DoubleEvaluator.LOG
Returns the decimal logarithm of a number
|
static Function |
DoubleEvaluator.MAX
Returns the maximum of n numbers (n>=1)
|
static Function |
DoubleEvaluator.MIN
Returns the minimum of n numbers (n>=1)
|
static Function |
DoubleEvaluator.RANDOM
Returns a pseudo random number
|
static Function |
DoubleEvaluator.ROUND
Returns the closest integer of a number
|
static Function |
DoubleEvaluator.SINE
Returns the trigonometric sine of an angle.
|
static Function |
DoubleEvaluator.SINEH
Returns the hyperbolic sine of a number.
|
static Function |
DoubleEvaluator.SUM
Returns the sum of n numbers (n>=1)
|
static Function |
DoubleEvaluator.TANGENT
Returns the trigonometric tangent of an angle.
|
static Function |
DoubleEvaluator.TANGENTH
Returns the hyperbolic tangent of a number.
|
Modifier and Type | Method and Description |
---|---|
Collection<Function> |
Parameters.getFunctions()
Gets the supported functions.
|
Collection<Function> |
AbstractEvaluator.getFunctions()
Gets the functions supported by this evaluator.
|
Modifier and Type | Method and Description |
---|---|
void |
Parameters.add(Function function)
Adds a function to the supported ones.
|
protected Double |
DoubleEvaluator.evaluate(Function function,
Iterator<Double> arguments,
Object evaluationContext) |
protected T |
AbstractEvaluator.evaluate(Function function,
Iterator<T> arguments,
Object evaluationContext)
Evaluates a function.
|
void |
Parameters.setTranslation(Function function,
String translatedName)
Sets the translated term for a function.
|
Modifier and Type | Method and Description |
---|---|
void |
Parameters.addFunctions(Collection<Function> functions)
Adds functions to the supported ones.
|
Copyright © 2014. All Rights Reserved.