On Sat, Feb 27, 2010 at 2:23 PM, David Goldsmith
<d_l_goldsm...@yahoo.com> wrote:
> Question 2) is there some way I can add pieces of the array incrementally to
> the image into their proper place, i.e., modify the following code:
>
>     ax.imshow(image[0:ny/2+1, 0:nx/2+1]) # upper left corner of image
>     ax.hold(True)
>     ax.imshow(argW[ny/2+1:-1, 0:nx/2+1]) # lower left corner of image
>     ax.imshow(argW[0:ny/2+1, nx/2+1:-1]) # upper right corner of image
>     ax.imshow(argW[ny/2+1:-1, nx/2+1:-1]) # lower right corner of image

Try the extents keyword argument. It let's you specify the corners of
the image in data coordinates.

Ryan

-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to