How can I modify this code to use parfor s=1:r?

1 次查看(过去 30 天)
Hi, I have reported here a very simple piece of code but it basically faces the same issues of my actual estimation code. Could you help me in modifying it to use parfor s=1:r? Thanks a lot!
r=20;
n=2;
m=3;
D=unidrnd(20,8,2);
upp=zeros(size(D,1),r,n);
for j=1:n
A=unidrnd(10,m,n);
parfor s=1:r
B=unidrnd(10,m,n);
C=A+B;
for i=1:size(C,1)
for w=1:size(D,1)
if all(C(i,:)==D(w,:))
upp(w,s,j)=1;
end
end
end
end
end

采纳的回答

Edric Ellis
Edric Ellis 2013-11-4
You could try something like this
r=20;
n=2;
m=3;
D=unidrnd(20,8,2);
upp=zeros(size(D,1),r,n);
for j=1:n
A=unidrnd(10,m,n);
parfor s=1:r
B=unidrnd(10,m,n);
C=A+B;
% Make a temporary vector to build up in the FOR loops below
tmp = zeros(1, size(D,1));
for i=1:size(C,1)
for w=1:size(D,1)
if all(C(i,:)==D(w,:))
% Assign an element of 'tmp'
tmp(w) = 1;
end
end
end
% Assign all of 'tmp' into 'upp'.
upp(:, s, j) = tmp;
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by