help-octave
[Top][All Lists]
Advanced

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

Re: parcellfun howto


From: Jerry Ebalunode
Subject: Re: parcellfun howto
Date: Sun, 17 Apr 2011 16:31:34 -0400

 in a forum you mentioned a way of emulating matlabs parfor in the
snippet below is to 


  parfor k = 1:100
    do_stuff (k);
endparfor


loop_body = @ k do_stuff(k);
parcellfun(@loop_body,cell2mat(1:100));


I tried as recommended but it didn't work. Could tell me what I am doing
wrong. Thanks for your quick response.

-Jerry






reply via email to

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