Description: | E = 2.718281828459045235 |
Syntax: | a = abs(x)
|
Description: | Returns the absolute value of the number. |
Syntax: | a = arccosh(x)
|
Description: | Returns the hyperbolic arccosine of x. |
Syntax: | a = arcsinh(x)
|
Description: | Returns the hyperbolic arcsine of x. |
Syntax: | a = arctanh(x)
|
Description: | Returns the hyperbolic arctangent of x. |
Syntax: | a = ceil(x)
|
Description: | Rounds number towards positive infinity (opposite of Euphoria's floor()). |
Syntax: | a = cosh(x)
|
Description: | Returns the hyperbolic cosine of x. |
Syntax: | a = fraction(x), ...
|
Description: | Returns the fraction part of the number (e.g. fraction(3.14) returns 0.14). |
Syntax: | a = log10(x)
|
Description: | Calculates log base 10 of x. |
Syntax: | a = log2(x)
|
Description: | Calculates log base 2 of x. |
Syntax: | a = max(s)
|
Description: | Returns the element with the largest value in s. |
Comments: | To use max to compare two atoms, enclose their values in braces( eg, a = max({x, y}) ). |
Syntax: | a = min(s)
|
Description: | Returns the element with the smallest value in s. |
Comments: | To use min to compare two atoms, enclose their values in braces( eg, a = min({x, y}) ). |
Syntax: | a = multiply_all(s)
|
Description: | Multiplies all elements of s. |
Syntax: | a = round(x)
|
Description: | Rounds number towards nearest whole number. |
Syntax: | a = sign(x)
|
Description: | Returns 1 for positive numbers, -1 for negative numbers, and 0 for 0. |
Syntax: | a = sinh(x)
|
Description: | Returns the hyperbolic sine of x. |
Syntax: | a = sum(s), ...
|
Description: | Adds all elements of s together. |
Syntax: | a = tanh(x)
|
Description: | Returns the hyperbolic tangent of x. |
Syntax: | a = truncate(x), ...
|
Description: | Returns the non-fraction part of the number (e.g. truncate(3.14) returns 3). |