multithreading - setting up matlab multicore computing -
i'm trying use in matlab
parfor = 1 : 100 disp( sprintf('process %d\n', i) ); end
how setup number of cores want use (possibly inside script)? @ moment see same (sorted) sequence.
thank you
use
matlabpool open x
where x
number of cores you'd run computation on.
Comments
Post a Comment