... | ... | @@ -16,32 +16,33 @@ Operators |
|
|
Functions
|
|
|
---------
|
|
|
|
|
|
| Functions | Example |
|
|
|
|:----------------------------------------------------------------|:-----------:|
|
|
|
| absolute value | abs(x) |
|
|
|
| arc cosine | acos(x) |
|
|
|
| arc sine | asin(x) |
|
|
|
| arc tangent | atan(x) |
|
|
|
| cubic root | cbrt(x) |
|
|
|
| nearest upper integer | ceil(x) |
|
|
|
| cosine | cos(x) |
|
|
|
| hyperbolic cosecant | csch(x) |
|
|
|
| euler's number raised to the power (e^x) | exp(x) |
|
|
|
| nearest lower intege | floor(x) |
|
|
|
| logarithmus naturalis (base e | log(x) |
|
|
|
| logarithm to base 2 | log2(x) |
|
|
|
| logarithm to base 10 | log10(x) |
|
|
|
| logarithm to base b | logb(x) |
|
|
|
| secant | sec(x) |
|
|
|
| hyperbolic secant | sech(x) |
|
|
|
| sine | sin(x) |
|
|
|
| hyperbolic sine | sinh(x) |
|
|
|
| square root | sqrt(x) |
|
|
|
| tangent | tan(x) |
|
|
|
| hyperbolic tangent | tanh(x) |
|
|
|
| signum of a value | signum(x) |
|
|
|
| converts from degrees to radians | toradian(x) |
|
|
|
| converts from radians to degrees | todegree(x) |
|
|
|
| minimum | min(x, y) |
|
|
|
| maximum | max(x, y) |
|
|
|
| principal value of the arc tangent of y/x, expressed in radians | atan2(y, x) | |
|
|
| Functions | Example |
|
|
|
|:----------------------------------------------------------------|:----------------:|
|
|
|
| absolute value | abs(x) |
|
|
|
| arc cosine | acos(x) |
|
|
|
| arc sine | asin(x) |
|
|
|
| arc tangent | atan(x) |
|
|
|
| cubic root | cbrt(x) |
|
|
|
| nearest upper integer | ceil(x) |
|
|
|
| cosine | cos(x) |
|
|
|
| hyperbolic cosecant | csch(x) |
|
|
|
| euler's number raised to the power (e^x) | exp(x) |
|
|
|
| nearest lower intege | floor(x) |
|
|
|
| logarithmus naturalis (base e | log(x) |
|
|
|
| logarithm to base 2 | log2(x) |
|
|
|
| logarithm to base 10 | log10(x) |
|
|
|
| logarithm to base b | logb(x) |
|
|
|
| secant | sec(x) |
|
|
|
| hyperbolic secant | sech(x) |
|
|
|
| sine | sin(x) |
|
|
|
| hyperbolic sine | sinh(x) |
|
|
|
| square root | sqrt(x) |
|
|
|
| tangent | tan(x) |
|
|
|
| hyperbolic tangent | tanh(x) |
|
|
|
| signum of a value | signum(x) |
|
|
|
| converts from degrees to radians | toradian(x) |
|
|
|
| converts from radians to degrees | todegree(x) |
|
|
|
| minimum | min(x, y) |
|
|
|
| maximum | max(x, y) |
|
|
|
| principal value of the arc tangent of y/x, expressed in radians | atan2(y, x) |
|
|
|
| random with limits | random(min, max) | |