Parfor Indexing -- Basic question

조회 수: 1 (최근 30일)
Matlab2010
Matlab2010 2013년 10월 25일
답변: Matt J 2013년 10월 25일
How do you index into a variable if you dont know the size of the loop?
In the first example below parfor works fine.
A = 1:10;
parfor i = 1:length(A)
tmp = rand(A(i));
B(i) = tmp(1);
end
In this example, parfor doesnt work."cannot be run due to the way variable B is used". Such a situation might occur if the case was more complex where B was only assigned an output under certain conditions (IE you dont know the final size of B at the start).
A = 1:10;
B = [];
parfor i = 1:length(A)
tmp = rand(A(i));
B(end+1) = tmp(1);
end
also doesnt work:
A = 1:10;
B = [];
cnt = 1;
parfor i = 1:length(A)
tmp = rand(A(i));
B(cnt) = tmp(1);
cnt = cnt + 1;
end
Hence my question is, how do you index into B in such a case?

답변 (3개)

Edric Ellis
Edric Ellis 2013년 10월 25일
Here are two ways you could address this. Firstly, using concatenation:
B1 = [];
parfor idx = 1:1000
x = rand();
if x > 0.5
B1 = [B1, x];
end
end
Or, build B with invalid values and strip them later
B2 = NaN(1, 1000);
parfor idx = 1:1000
x = rand();
if x > 0.5
B2(idx) = x;
end
end
B2 = B2(~isnan(B2));
  댓글 수: 1
Matt J
Matt J 2013년 10월 25일
편집: Matt J 2013년 10월 25일
Similarly, you could use a cell array and then post-concatenate
parfor i = 1:1000
x = rand();
if x > 0.5
B{i} = x;
end
end
B=cell2mat(B),

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


Matlab2010
Matlab2010 2013년 10월 25일
ok. perhaps the original example wasnt the best!
In my specific case B is a struct. with a very large number of fields. Hence generating each one is time consuming and thus why I want to use parfor.
How to use parfor when the output is a struct and you dont know the final number. Assignment is to a cell eg B{cnt} = struct()
  댓글 수: 1
Matt J
Matt J 2013년 10월 25일
Yes, you could do that,
parfor i = 1:1000
x = rand();
if x > 0.5
B{i}.field1=...;
B{i}.field2=...;
end
end
B=[B{:}];

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


Matt J
Matt J 2013년 10월 25일
Or, perhaps you meant something like this
fields = {'f1','f2','f3','f4'};
N=length(fields);
vals=cell(1,N);
parfor i = 1:N
switch fields{i}
case 'f1'
vals{i}=1;
otherwise
vals{i}=0;
end
end
args=[fields;vals];
B=struct(args{:})

카테고리

Help CenterFile Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by