Effacer les filtres
Effacer les filtres

Creating a Parfor loop for multiple function evaluation

1 vue (au cours des 30 derniers jours)
H R
H R le 29 Mai 2017
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');

Réponse acceptée

Walter Roberson
Walter Roberson le 29 Mai 2017
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.

Plus de réponses (0)

Catégories

En savoir plus sur Parallel for-Loops (parfor) dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by