Dear Liston,
It seems that you have a problem using parallel pool, like you are trying to use it twice during the same simulation. I can’t reproduce your error, but I suggest that you use the following code to replace the matlabpool command in line 369:
if LTE_config.parallel_toolbox_installed
if verLessThan(‘matlab’,’8.3′)
number_of_labs = max (matlabpool(‘size’),1);
else
p = gcp(‘nocreate’);
if isempty(p) % from matlab doc
poolsize = 0;
else
poolsize = p.NumWorkers;
end
number_of_labs = max(poolsize,1);
end
else
number_of_labs = 1;
end
Best,
Fjolla