Hi,

On Wed, May 27, 2009 at 13:29, ninjasmith <henrylindsaysm...@gmail.com> wrote:
> I'm a bit new to matplotlib and python.  I'm running ubuntu 64bit.  whenever
> I try and do anything with matplotlib I get an error similar to above.  it
> still works, i.e. when I run the show() command the plot will appear but all
> matplotplib commands return an error similar to above. for example
>
> In [15]: plot(a)
> Out[15]: [<matplotlib.lines.Line2D object at 0x28487d0>]
>
> In [16]: figure(2)
> Out[16]: <matplotlib.figure.Figure object at 0x2ddc150>

those are not error: what that line say is that you created an
instance of matplotlib.figure.Figure and that instance is located at
0x2ddc150 (it's a memory location).

if you do something like

p = plot(a)

you'll see this messages go away, since you assign the instance
reference to the variable p

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, & 
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com 
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to