Quick reference
39
(SOFT 03.1X)
Conditional block repetition ($WHILE):
$WHILE...
$ENDWHILE
While the condition is true, it executes the blocks contained between $WHILE and
$ENDWHILE.
Conditional block repetition ($DO):
$DO...
$ENDDO
While the condition is true, it repeats the execution of the blocks contained between $DO and
$ENDDO.
OPERATORS AND FUNCTIONS
Arithmetic
+ Add MOD Remainder of the division *= Compounded multiplication
- Subtract / change sign ** Exponent /= Compounded division
* Multiply += Compounded addition
/ Divide -= Compounded subtraction
Relational
== Equal to >= Greater than or equal to > Greater than
!= Not equal <= Smaller than or equal to < Smaller than
Binary
& Binary AND ^ Exclusive OR (XOR)
I Binary OR INV[...] Inverse
Logic
* Logic AND + Logic OR
Boolean
True Tr ue False Not true
Trigonometric
SIN[...] Sine TAN[...] Tangent ACOS[..] Arc-cosine ARG[...] Arctangent y/x
COS[...] Cosine ASIN[...] Arc-sine ATAN[...] Arc-tangent
Mathematical
ABS[...] Absolute value LOG[...] Decimal logarithm DEXP[..] Decimal exponent
SQR[...] Square function LN[...] Neperiam logarithm
SQRT[..] Square root EXP[...] "e" function
Other functions
INT[...] Returns the integer
FUP[...]
Returns the integer plus one. If the number
is an integer, it returns it
FRACT[...] Returns decimal portion
ROUND[..] Rounds up or down to the nearest integer
EXIST[...]
It checks whether the selected variable or
parameter exists or not