필터 지우기
필터 지우기

Error using bitget and bitset in array

조회 수: 3 (최근 30일)
kash
kash 2012년 11월 23일
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