Re: [Matplotlib-users] Help with imshow on Mac OS X 10.6 Snow Leopoard

2010-06-08 Thread Benjamin Root
Todd, I am glad that worked for you. I am assuming that you are coming from a Matlab-like experience where every plot command did produced a graphical result when called? If so, I can see how this behavior can be a little confusing. I will admit I was a little confused at first when I started

Re: [Matplotlib-users] Help with imshow on Mac OS X 10.6 Snow Leopoard

2010-06-08 Thread Eric Firing
On 06/08/2010 04:31 AM, Benjamin Root wrote: Todd, I am glad that worked for you. [...] Anyway, you can always call plt.ion() to turn interactive mode on, and plt.ioff() to turn it off, or you can use ipython with the -pylab argument (although I don't know if this is the same as turning

[Matplotlib-users] Help with imshow on Mac OS X 10.6 Snow Leopoard

2010-06-07 Thread Todd V Rovito
Greetings, I just installed Python 2.6 (python.org), Numpy 1.4.1, and Matplotlib 0.99.1.2 all on Mac OS X 10.6 in an attempt to learn about scientific programming in python. Go easy on me since I am a begginer. The Python and Numpy seem to be working correctly. I can get matplotlib to make

Re: [Matplotlib-users] Help with imshow on Mac OS X 10.6 Snow Leopoard

2010-06-07 Thread Benjamin Root
Todd, I think you are missing a plt.show() at the end of your code. matplotlib, by default on most systems, does not show a plot until you tell it to using plt.show() command. See if that works, Ben Root On Mon, Jun 7, 2010 at 7:57 AM, Todd V Rovito rovit...@gmail.com wrote: Greetings,

Re: [Matplotlib-users] Help with imshow on Mac OS X 10.6 Snow Leopoard

2010-06-07 Thread Todd V Rovito
Ben, That worked great, thanks!!! Just a few points. The documentation under the image tutorial section does not specify that a user has to do plt.show(), should I submit a bug report or something? I changed my code and listed it below it works as long as I comment out the plot c section. In