| 
     
      
      
      From: Daπid <dav...@gm...> - 2012-10-19 21:24:05
      
     
   | 
On Fri, Oct 19, 2012 at 11:08 PM, elmar werling <el...@ne...> wrote: > vmin=min(z), vmax=max(z) A suggestion, when dealing with arrays, it is generally faster to use the numpy function to compute the max and min, either np.max(z) or z.max(), than the standard Python one.  |