如果要在每个工作人员上生成 4 个大小为 (300,1) 的数组,最好执行以下操作。请注意,我的计算机/Matlab 池中有 4 个内核。
clc
clear
spmd
RandomArray = rand(300,1); % Matlab automatically creates a (300,1) array in each worker.
end
FinalArray = [RandomArray{:}]; % Concatenate everything outside of the spmd block.
whos % Check the results
Name Size Bytes Class Attributes
FinalArray 300x4 9600 double
RandomArray 1x4 1145 Composite
如您所见,FinalArray 具有您想要的大小 (300,4)。使用上面的代码,将所有内容放在第二个 spmd 块中会很痛苦,因为每个工作人员都不知道其他工作人员中的内容,并且每个变量在没有使用它们的工作人员中都是未定义的。抱歉,我不知道正确的术语,但您可以阅读文档以获得更好的解释:)
编辑:
为了回答您的评论,这里是一个简单的例子。希望这就是你的意思:)
clc
clear
% Define different variables.
w = ones(1,10);
x = 1:10;
y = x/2;
z = rand(1,10);
% Use different functions in each worker. Of course you could use the same function with different inputs.
spmd
if labindex==1
a = w;
end
if labindex==2
b = sin(x);
end
if labindex==3
c = y.^2;
end
if labindex==4
d = 4*z;
end
end
% This is the important part
FinalArray = [a{1} ;b{2}; c{3} ;d{4}];
whos
whos 的输出是:
Name Size Bytes Class Attributes
FinalArray 4x10 320 double
a 1x4 497 Composite
b 1x4 497 Composite
c 1x4 497 Composite
d 1x4 497 Composite
w 1x10 80 double
x 1x10 80 double
y 1x10 80 double
z 1x10 80 double