MATLAB: I am new to use parfor, I have searched for the condition but I still can’t understand what to do in order to make it work.

parfor

I have a code like this…
Copt = cell(65,65);
parfor ws = 1:size(wsv,1)
t=wsv(ws,1);
u=wsv(ws,2);
...
...
Copt{t,u} = -2;
...
...
...
C = corr2(F1,F2);
if (C > Copt{t,u}) %C returns correlation coef.%
Copt{t,u} = C;
end
end
"Error: The variable in a parfor cannot be classified." displays on the command window when I run my code.
I don't know what to do, is there anyone can give me suggestion?

Best Answer

To run a PARFOR loop, all variables that you wish to produce as results from the loop must either be sliced or reductions. A sliced variable is one where each iteration of the loop fills out a "slice" which is a subset of the array based on the loop variable. In your case, because you are not indexing "Copt" with the loop index "ws", it cannot be sliced, and so MATLAB cannot work out if your loop is safe to run in parallel.
There's more about variable types in PARFOR here: http://www.mathworks.co.uk/help/distcomp/advanced-topics.html#bq_of7_-1
Related Question