Assign values to elements of a matrix with indices less than those specified in an array
이전 댓글 표시
Hi,
I'm not really sure how to word my question (hence the confusing title!). What I'm trying to do is take an array of values, like A=[2,4,1,3]
and use it to make a matrix B that looks like;
1 1 1 1
1 1 0 1
0 1 0 1
0 1 0 0
i.e. there are ones for rows lower than the value in the column from A. I can see how I'd do this using a for loop, but we'd like to speed up our (currently very slow) program, so I wondered if anybody had an idea how I could make this vectorised?
Cheers
댓글 수: 4
Azzi Abdelmalek
2013년 10월 20일
What is the relation between A and B?
dpb
2013년 10월 20일
Nothing "magic" comes to mind otomh...sometimes a loop is best. What are you now doing to generate it? The crude would be
B=zeros(max(A)); % preallocate
for i=1:length(B)
B(:,i)=ones(A(i),1);
end
Unless A is huge or you've no preallocated I'd not think this would take long at all. Have you actually profile your code to find out what is the bottleneck or are you guessing about what might be?
dpb
2013년 10월 20일
Just, forgot the length argument in B...
B=zeros(max(A)); % preallocate
for i=1:length(B)
B(1:A(i),i)=ones(A(i),1);
end
채택된 답변
추가 답변 (1개)
Andrei Bobrov
2013년 10월 20일
n = max(A);
nn = numel(A);
p = zeros(n,nn);
p(A + n*(0:nn-1))=1;
out = flipud(cumsum(flipud(p)));
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!