how to creat a 0and 1 matrix by another matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
example: I have one random number matrix a. a=[2 3 4 5 ],and then I want to use a matrix to create another matrix b depending on a.
b=[1 1 0 0 0 1 1 1 1 0 0 0 0 0].The elements in a is to describe the number of 0 and 1 in matrix b.
Please don't use for loop,it's too slow.
댓글 수: 0
답변 (1개)
Niklas Nylén
2014년 6월 3일
"Please don't use for loop,it's too slow." In which context are you using the function if the following code is too slow?
If a has length 10000 this code will run in 0.009 s on my computer:
tic
b = ones(1,sum(a));
acumsum = cumsum(a);
for ii = 2:2:length(a)
b(acumsum(ii-1)+1:acumsum(ii))=0;
end
toc
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!