help-octave
[Top][All Lists]
Advanced

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

running blocks of code in parallel?


From: Jared
Subject: running blocks of code in parallel?
Date: Mon, 08 Dec 2008 11:15:37 -0500
User-agent: Thunderbird 2.0.0.18 (Windows/20081105)

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





reply via email to

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