Min
Finds the minimal value from the given values.
Syntax:
Min( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the minimal value will be selected. |
Max
Finds the maximum value from the given values.
Syntax:
Max( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the maximum value will be selected. |
Sqrt
Calculates the square root value of the given value.
Syntax:
Sqrt( var )
| Parameter | Description |
|---|---|
var | Value for which the square root value will be calculated. |
Abs
Calculates the absolute value of the given value.
Syntax:
Abs( var )
| Parameter | Description |
|---|---|
var | Value for which the absolute value will be calculated. |
Floor
Returns the largest lower integer of the given value.
Syntax:
Floor( var )
| Parameter | Description |
|---|---|
var | Value for which the largest lower integer will be calculated. |
Ceil
Returns the largest integer greater than the given value.
Syntax:
Ceil( var )
| Parameter | Description |
|---|---|
var | Value for which the largest higher integer will be calculated. |
Log
Returns the natural logarithmic value of the given value.
Syntax:
Log( var )
| Parameter | Description |
|---|---|
var | Value for which the natural logarithmic value will be calculated. |
Log10
Returns the natural logarithmic value of 10 of the given value.
Syntax:
Log10( var )
| Parameter | Description |
|---|---|
var | Value for which the natural logarithmic value of 10 will be calculated. |
ATan
Returns the arctangent (inverse tangent) of the given value
Syntax:
ATan( var )
| Parameter | Description |
|---|---|
var | Value for which the arctangent (inverse tangent) will be calculated. |
Pow
Calculates the value raised to the power of the exponent.
Syntax:
Pow( base, exponent )
| Parameter | Description |
|---|---|
base | Values to be raised to the power of the specified exponent. |
exponent | A numeric value. |
Sum
Finds the sum value of the given values.
Syntax:
Sum( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the summation will be calculated. |
Prod
Finds the product value (multiplied) of the given values.
Syntax:
prod( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the product will be calculated. |
Mean
Finds the mean value of the given values.
Syntax:
Mean( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the mean value will be calculated. |
StdDevS
Calculates the sample standard deviation of the given values. Use this function when the values represent a sample rather than the entire population.
Syntax:
StdDevS( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the sample standard deviation will be calculated. |
StdDevP
Calculates the population standard deviation of the given values. Use this function when the values represent the entire population.
Syntax:
StdDevP( var1, var2, ..., varN )
| Parameter | Description |
|---|---|
var1, var2, ..., varN | Values from which the population standard deviation will be calculated. |