Error using bitget and bitset in array

3 次查看(过去 30 天)
I havr a code below,it returns error using array
C=[1081;1056];
for i=1:11
if (bitget(C(i),5)==1)
P=bitset(C(i),5,0);
P=dec2bin(P);
end
end
please provide assistance

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2012-11-23
编辑:Azzi Abdelmalek 2012-11-23
The size of C is 2 and you re using for i=1:11
Index exceeds matrix dimensions, because C(3) does'nt exist
C=[1081;1056];
for i=1:2
if (bitget(C(i),5)==1)
P=bitset(C(i),5,0);
P=dec2bin(P);
end
end
% Don't use i & j as an indexes (they are used for complex number)
  2 个评论
kash
kash 2012-11-23
Azzi if i type P ,i get only one value
P =
10000101001 where as i should get 2 values
Azzi Abdelmalek
Azzi Abdelmalek 2012-11-23
编辑:Azzi Abdelmalek 2012-11-23
clear
C=[1081;1056];
for ii=1:2
if (bitget(C(ii),5)==1)
P1=bitset(C(ii),5,0);
P{ii}=dec2bin(P1)
end
end
The number of values depends on your test

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by