| Type |
Name |
Description |
| real |
sin(r) cos(r) tan(r) |
Sine, cosine and tangent of <r> in radian |
| real |
sind(r) cosd(r) tand(r) |
Sine, cosine and tangent of <r> in degrees |
| real |
asin(r) acos(r) atan(r) |
Arc sin, cosine, tangent of <r>, result in radian |
| real |
asind(r) acosd(r) atand(r) |
Arc sin, cosine, tangent of <r>, result in degrees |
| real |
sqrt(r) |
Square root of <r> |
| real |
exp(r) |
Exponential of <r>, base e |
| real |
ln(r) |
Logarithm of <r> |
| real |
sinh(r) cosh(r) tanh(r) |
Hyperbolic sine, cosine and tangent of <r> |
| real |
abs(r) |
Absolute value of <r> |
| integer |
mod(r1, r2) |
Modulo <r1> of <r2> |
| integer |
int(r) |
Convert <r> to integer |
| integer |
nint(r) |
Convert <r> to nearest integer |
| real |
frac(r) |
Returns fractional part of <r> |
|