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
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 u
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.
I
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 wrote:
> Greetings,
> I just installe