![FATEK FBs-CBE Manual Download Page 267](http://html.mh-extra.com/html/fatek/fbs-cbe/fbs-cbe_manual_546538267.webp)
Advanced Function Instruction
7 -1 0 3
FUN120
P
MAND
MATRIX AND
FUN120
P
MAND
Ma :
EN
Operation control
Ladder symbol
120P.MAND
Mb :
L :
Md :
Ma : Starting register of source matrix a
Mb : Starting register of source matrix b
Md : Starting register of destination matrix
L : Length of matrix (Ma, Mb and Md)
Ma, Mb, Md may combine with V, Z, P0~P9 to serve
indirect address application
WX
WY
WM
WS TMR CTR
HR
IR
OR
SR
ROR
DR
K
XR
Range
Ope-
rand
WX0
∣
WX240
WY0
∣
WY240
WM0
∣
WM1896
WS0
∣
WS984
T0
∣
T255
C0
∣
C255
R0
∣
R3839
R3840
∣
R3903
R3904
∣
R3967
R3968
∣
R4167
R5000
∣
R8071
D0
∣
D4095
2
∣
256
V
、
Z
P0~P9
Ma
○
○
○
○
○
○
○
○
○
○
○
○
○
Mb
○
○
○
○
○
○
○
○
○
○
○
○
○
Md
○
○
○
○
○
○
○
○
*
○
*
○
○
L
○
○
*
○
○
z
When operation control "EN" = 1 or "EN
↑
" (
P
instruction) has a
transition from 0 to 1, this instruction will perform a logic AND (only
if 2 bits are 1 will the result be 1, otherwise it will be 0)operation
between two source matrixes with a length of L, Ma and Mb. The
result will then be stored in the destination matrix Md, which is also
the same length (the AND operation is done by bits with the same
bit numbers). For example, if Ma
0
= 0, Mb
0
= 1, then Md
0
= 0; if
Ma
1
= 1, Mb
1
= 1, then Md
1
= 1; etc, right up until AND reaches
Ma
16L-1
and Mb
16L-1
.
Ma
Mb
AND
Md
L
X0
EN
R 0
120P.MAND
L :
Ma :
Mb :
Md :
R 10
R 20
5
z
In the program at left, when X0 goes from 0
→
1, then
matrix Ma, comprised by R0 to R4, and matrix Mb,
comprised by R10 to R14, will do an AND operation. The
results will be stored back in matrix Md, comprised by
R20 to R24. The result is shown at right in the diagram
below.
Ma
15
↓
Ma
Ma
0
↓
Mb
15
↓
Mb
Mb
0
↓
Md
15
↓
Md
Md
0
↓
R0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0
R11 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R2 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R12 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R22 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1
R3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
R4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R14 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
R24 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
↑
Ma
79
↑
Ma
64
↑
Mb
79
↑
Mb
64
↑
Md
79
↑
Md
64
Before execution
After execution