
LNC-M8000
Operand Priority
186 寶元數控精密股份有限公司
LNC Technology Co., Ltd.
6.3 Logic Operation Command
(1). AND logic operation, &&
#i = #j && #k
0 for false and non-0 for true in logic operation
(2). OR logic operation, | |
#i = #j | | #k
(3). NOT logic operation, !
#i = ! #j
6.4 Compare Command
(1)Greater Than (GT), >
#i = #j > #k,If #j is greater than #k, then the statement is true, #i=1.
(2)Less Than (LT), <
#i = #j < #k,If #j is less than #k then the statement is true, #i=1.
(3)Greater Than or Equal to (GE), >=
#i = #j >= #k,If #j is greater than or equal to #k, then the statement is true, #i=1.
(4)Less Than or Equal to (LE), <=
#i = #j <= #k,If #j is less than #k, then the statement is true, #i=1.
(5)Equal,==
#i = #j == #k,If #j is equal to #k, then the statement is true, #i=1.
(6)Not Equal,!=
#i = #j != #k,If #j is not equal to #k, then the statement is true, #i=1.
Komentarze do niniejszej Instrukcji