hi,
assume data looks like this:
cell Bit
0 1
1 X
2 1
3 0
4 X
5 X
6 X
7 X
8 1
9 X
10 0
11 0
12 X
13 X
14 1
15 1
And i want to group 4 bits into each group such as:
ROW1=01X1
ROW2=XXXX
ROW3=00X1
ROW4=11XX
how to do this?
thanks