Operators

General Operators:

CArg1 + CArg2, CArg1 - CArg2 Addition, Subtraktion
CArg1 * CArg2, CArg1 / CArg2 Multiplikation, Division
CArg1 \ CArg2 Division, fraction stroke
CArg1 ^ CArg2 power operator e.g. 2^3 = 2*2*2
CArg1 | CArg2 parallel operator e.g. 5k|10k = 3.333k
[Arg] Calculates the function with LABEL=Arg. Be careful, label must be exactly identical. In case of multiple declaration, always the latest definition (highest line number) is calculated. Arguments cannot contain brackets ([,]).

Logical Operators:

CArg1 = CArg2 equal *
Arg1 <= Arg2 smaller or equal *
Arg1 >= Arg2 larger or equal *
CArg1 <> CArg2 not equal
Arg1 < Arg2 smaller than
Arg1 > Arg2 larger than

* Those operators can only be used within braces, otherwise confusion with '='-Separator between function label and expression.

For valid condition the operators result 1. Otherwise 0.