help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: running blocks of code in parallel?


From: Carlo de Falco
Subject: Re: running blocks of code in parallel?
Date: Tue, 9 Dec 2008 12:56:53 +0000


On 08/dic/08, at 16:15, Jared wrote:

I have the following code that I need to run on several matrices. Is
there a way to run the code in some kind of parallel fashion so that I
don't need to wait for one block to finish before the other starts?
for i=1:length(DJI)
DJI2(i,1)=datenum(char(DJI(i,2)),'yyyy-mm-dd');
DJI2(:,2:6) = reshape(str2num(strvcat(DJI(:,3:7)(:)), length(DJI(:, 3:7))));
end

Yes, with MPITB:
http://atc.ugr.es/javier-bin/mpitb
c.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]