Can anyone who has successfully used the Octave Forge package "parallel" (latest version 2.2.0) share some of their experience on how to use it?
For a start, I'd like to execute a for loop in parallel on a single computer, something similar to the following code in Matlab
matlabpool open 4;
for i = 1:n_pts
% Execute something in parallel
end
matlabpool close;
I just installed the package but I cannot find any useful documentation on how to actually use it.
Thanks!