matlab可以实现按位操作吗

2024-12-05 17:38:48
推荐回答(1个)
回答1:

在matlab中按位操作的函数有:
bitand按位求与
a=bitand(7,3)
a =
3
bitor按位求或
a=bitor(7,3)
a =
7
祝你学习愉快!