how to perform bitwise logical xor for two matrices having 13 bit binary data each?
古いコメントを表示
I have two cell arrays with each element having 13 bit binary strings. How to perform bitwise XOR for these two cell arrays.
For eg: consider two 3x3 cell arrays A and B
A= '1011111111011' '1011111111011' '1011111111011'
'1100000111111' '1100000111111' '1100000111111'
'1100000001000' '1100000001000' '1100000001000'
B= '1100001001010' '1100001001010' '1100001001010'
'1011111100010' '1011111100010' '1011111100010'
'1100000001110' '1100000001110' '1100000001110'
My desired output is as below
C=A XOR B
ie C(1,1)= '1011111111011' XOR '1100001001010'
C(1,1)= '0111111011001'
Similarly for all the elements a bitwise XOR should be performed
採用された回答
その他の回答 (2 件)
Ramya M S
2017 年 2 月 1 日
0 投票
how can i xor 4 bit and 8 bit data?
Dr. Suneetha CH
2020 年 8 月 18 日
0 投票
how to perform bitwise xor successively? i mean a XOR b XOR c .....
カテゴリ
ヘルプ センター および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!