我有一个 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);
如您所见,一个简单的操作有很多行,我想知道是否有更有效的方法来做同样的事情。