如何在 Matlab 中使用并行循环
How can I use Parallel loop in Matlab
如果我在 Matlab 中有以下代码,如何修复 st3 矩阵中的索引以执行并行循环?谢谢
n=1;
parfor j=1:10
[~,x1]=compare2Arrays(st1,st2);
if isempty(x1)
st3(n)=st4(j);
n=n+1;
end
end
因为循环没有按顺序 运行。你不能那样使用 n
。这是更新后的代码。
n=1;
st5=nan(1,10);
parfor j=1:10
[~,x1]=compare2Arrays(st1,st2);
if isempty(x1)
st5(j)=st4(j);
end
end
st3=st5(not(isnan(st5)));
如果我在 Matlab 中有以下代码,如何修复 st3 矩阵中的索引以执行并行循环?谢谢
n=1;
parfor j=1:10
[~,x1]=compare2Arrays(st1,st2);
if isempty(x1)
st3(n)=st4(j);
n=n+1;
end
end
因为循环没有按顺序 运行。你不能那样使用 n
。这是更新后的代码。
n=1;
st5=nan(1,10);
parfor j=1:10
[~,x1]=compare2Arrays(st1,st2);
if isempty(x1)
st5(j)=st4(j);
end
end
st3=st5(not(isnan(st5)));