License: GPL 3.0
| Node | Description |
|---|---|
| aall | No description |
| abs | Outputs absolute value of an input number |
| acosd | No description |
| add | Adds numbers |
| asind | No description |
| atand | No description |
| ceil | Rounds a number to a minimal integer that is greater than the number |
| cosd | No description |
| cube | Computes the cube (i.e. x³) of an input value. |
| dbl | No description |
| deg2rad | No description |
| diff | Delta of two input value. delta=abs(IN1-IN2) |
| div | Divides two numbers. If IN2 is zero return Nan. |
| division | No description |
| floor | Rounds a number to a maximal integer that is less than the number |
| half | No description |
| hypot | Hypotenous: sqrt(x*x+y*y) |
| log-bx | Computes logarithm of `X` to base `B`. |
| log-e | No description |
| max | Return maximum number value of the inputs. |
| min | Return minimum number value of the inputs |
| minmax | Get min, max of two input value. |
| mod | Computes the remainder of `IN1` divided by `IN2`. |
| multiply | Multiplies numbers |
| pow | Computes the power of `BASE` raised to the power exponent `EXP` |
| pow10 | No description |
| pow2 | No description |
| rad2deg | No description |
| round | Rounds a number to nearest integer |
| sign | If IN1>IN2 then SIGN = Pozitive else
SIGN = Negative.
If IN1==IN2 then SIGN=0; |
| sind | No description |
| sq | Computes the square (i.e. x²) of an input value. |
| sqrt | Computes the square root of an input value. |
| square | Computes the square (i.e. x²) of an input value. |
| sub | Subtracts two numbers |
| tand | No description |