i have a large matrix whose elements is 1 and 0; how to conver each row to decimal ,like bin2dec

조회 수: 2 (최근 30일)
i do it like this
if true
rownum = size(Qbinnum,1);
for i = 1:rownum
cgroup(i)=bin2dec(num2str(Qbinnum(i,:)));
end
end
as the matrix is big, so it takes a lot of seconds ,any way easier ,less time ways?

채택된 답변

Rick Rosson
Rick Rosson 2014년 9월 15일
N = size(Qbinnum,2);
k = ((N-1):-1:0)';
v = 2.^k;
cgroup = Qbinnum*v;

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 9월 15일
What does this say
whos Qbinnum
  댓글 수: 1
Roger
Roger 2014년 9월 15일
Qbinnum is a big size matrix ,like this [1 0 0 1 1 1; 1 0 0 1 1 1; 1 0 0 1 1 0; 1 0 1 1 1 1; ... 1 1 1 1 1 1; 0 1 0 1 0 0 ]

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by