Creating a Parfor loop for multiple function evaluation

1 回表示 (過去 30 日間)
H R
H R 2017 年 5 月 29 日
回答済み: Walter Roberson 2017 年 5 月 29 日
Hello. I want to use parfor to reduce the calculation time for a loop I have by evaluating 6 functions at the same time. Could you please help me out with this:
The general form of the loop in my m file is:
x=rand(100,20);
global fidr_m;
fidr_m= fopen('C:/results.txt','w'); %%???
for i=1:100
Y(i)=func(x(i,:))
end
and my function (func) includes some lines to generate a unique text file from a base file depending on the looping variable (i=1:100) and run a very costly function WW.
function y = func(X)
if isempty(count)
count = 1;
else
count = count +1;
end
BasePath='C:/MyComputer/';
BaseName='Comp';
File = strcat(Basename, BaseName, num2str(count),'.txt');
y=WW(File,X);
XX=[X,y];
global fidr_m;
if fidr_m==-1
error('can not open the file');
end
fprintf(fidr_m, '%f\t', XX);
fprintf(fidr_m,'\n');

採用された回答

Walter Roberson
Walter Roberson 2017 年 5 月 29 日
You do not define count in the function before you use it.
global variables are not copied between workers.
You cannot use a worker to do i/o on a file that you open in a different worker.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by