翻转最后3位向量

时间:2013-03-14 04:37:40

标签: matlab binary

我有一个uint16向量,我需要翻转每个数字的最后3位。

我已经做过这个,但我认为必须有一个更简单的解决方案来做到这一点。这是我的代码。

%Turn the vector to binary
V_bin = dec2bin(V,16);
for i=1:length(V)
  %Get the last 3 bits
  tmp = V_bin(14:end);
  %Convert the string to decimal
  tmpdec = bin2dec(tmp);
  %Do the flip
  tmpflip = bitcmp(uint8(tmpdec));
  %Flipped to binary
  tmpbin = dec2bin(tmpflip);
  %Replace the flipped bits in the original string
  V_bin(14:end) = tmpbin(6:end);
end
V = bin2dec(V_bin);

正如你所看到的那样,一个简单的操作有很多行,我想知道是否有更有效的方法来做同样的事情。

1 个答案:

答案 0 :(得分:5)

我不熟悉matlab,但bitxor函数看起来适合你,即

V = bitxor(V, 7);