Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
バイナリ値を持つ異なるサイズの 2 つのベクトルに対して要素単位の論理 OR 演算を実行するにはどうすればよいでしょうか?
以下は、コア MATLAB のみの関数 (つまりdec2binおよびbin2dec) を使用したソリューションです。
dec2bin
bin2dec
a = 3; b = 5; bits = dec2bin(a,8)-'0' | dec2bin(b,8)-'0'; c = bin2dec(char(bits+'0'));
予想通りどこcだろう7
c
7