Advantech VisionNavi User Manual page 74

Table of Contents

Advertisement

[Bit Operations (Bit operation)]
Function name
band
bnot
bor
bxor
lsh
rsh
[Comparison (Comparison operation)]
Function name
equal
equal_elem
greater
greater_elem
greater_equal
greater_equal_ele
m
less
less_elem
less_equal
less_equal_elem
Function name Overview
not_equal
not_equal_elem
VisionNavi User Manual
Overview
Compute the bitwise and of two tuples.
Compute the bitwise not of a tuple.
Compute the bitwise or of two tuples.
Compute the bitwise exclusive or of two
tuples.
Shift a tuple bitwise to the left.
Shift a tuple bitwise to the right.
Overview
Test whether two tuples are equal.
Test, whether two tuples are elementwise
equal.
Test whether a tuple is greater than another
tuple.
Test, whether a tuple is elementwise greater
than another tuple.
Test whether a tuple is greater or equal to
another tuple.
Test, whether a tuple is elementwise greater
or equal to another tuple.
Test whether a tuple is less than another
tuple.
Test, whether a tuple is elementwise less
than another tuple.
Test whether a tuple is less or equal to
another tuple.
Test, whether a tuple is elementwise less or
equal to another tuple.
Test whether two tuples are not equal.
Test, whether two tuples are elementwise not
equal.
Example of use
BAnd := T1 band T2
BNot := bnot T
BOr := T1 bor T2
BXor := T1 bxor T2
Lsh := lsh(T, Shift)
Rsh := rsh(T, Shift)
Example of use
Equal := T1 == T2 or
Equal := T1 = T2
Equal := T1 [==] T2 or
Equal := T1 [=] T2
Greater := T1 > T2
Greater := T1 [>] T2
Greatereq := T1 >= T2
Greatereq := T1 [>=] T2
Less := T1 < T2
Less := T1 [<] T2
Lesseq := T1 <= T2
Lesseq := T1 [<=] T2
Example of use
Nequal := T1 != T2 or
Nequal := T1 # T2
Nequal := T1 [!=] T2 or
Nequal := T1 [#] T2
68

Advertisement

Table of Contents
loading

Table of Contents