Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-13 Thread Eric Firing
belinda thom wrote: > [...] > > Here's more info (redundant?) regarding what I've tried, in case it > clarifies. (Ultimately, I will obviously need to upgrade to 0.9, at > which point I can report back on if this fixed the problem on my > machine, but I can't do that until after the semester i

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-12 Thread belinda thom
On Apr 12, 2007, at 11:02 AM, Eric Firing wrote: > belinda thom wrote: > >> Me neither :-). I will try and get permission to upgrade axis.py w/ >> my quick fix commenting out the kwargs in line 2131 of axes.py, as >> this is the quick option and I need something ASAP. You seem to >> know qui

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-12 Thread Eric Firing
belinda thom wrote: > Me neither :-). I will try and get permission to upgrade axis.py w/my > quick fix commenting out the kwargs in line 2131 of axes.py, as this is > the quick option and I need something ASAP. You seem to know quite a bit > about matplotlib. If you have any idea what this hac

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-12 Thread belinda thom
Eric, On Apr 12, 2007, at 12:16 AM, Eric Firing wrote: > belinda thom wrote: >> Thanks Eric! >> I'm kind of afraid to upgrade to the SVN version b/c I fear >> something else might break (I've yet to install matplotlib from >> source b/c of a few nagging Mac OS X issues). >> What would you rec

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-12 Thread Eric Firing
belinda thom wrote: > Thanks Eric! > > I'm kind of afraid to upgrade to the SVN version b/c I fear something > else might break (I've yet to install matplotlib from source b/c of a > few nagging Mac OS X issues). > > What would you recommend? I don't know; I see from your earlier message that

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-11 Thread belinda thom
Thanks Eric! I'm kind of afraid to upgrade to the SVN version b/c I fear something else might break (I've yet to install matplotlib from source b/c of a few nagging Mac OS X issues). What would you recommend? There's also the issue of having to upgrade student machines for which I'm not ad

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-11 Thread Eric Firing
Belinda, John has checked in some fixes for axes3d recently, and your test code now runs with the version in svn--except for the problem that you should use P.show() only once in a given script. (I think there is some backend for which you can get away with using it more than once, but this i

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-11 Thread belinda thom
On Apr 11, 2007, at 4:47 PM, belinda thom wrote: > Hi, > > I'm replying to this older thread > > http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/ > msg02100.html > > because it relates very much to my recent problem, posted at http:// > www.mail-archive.com/matplotlib-users@l

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-04-11 Thread belinda thom
Hi, I'm replying to this older thread http://www.mail-archive.com/matplotlib-users@lists.sourceforge.net/ msg02100.html because it relates very much to my recent problem, posted at http:// www.mail-archive.com/matplotlib-users@lists.sourceforge.net/ msg03037.html. This problem seems more gene

Re: [Matplotlib-users] 3D curve and errors in axes3d

2007-01-20 Thread Karol Tarcak
Hi, the same problem occurred, when I also tried to plot some chaos systems the solution I found (and works just fine) is to comment axes.py:2131 I didn't send a patch, 'cos I'm not sure that it wasn't really an common bug (I played with my overall python distribution) some OT: 1) trajectories ->

[Matplotlib-users] 3D curve and errors in axes3d

2007-01-12 Thread Mico Filós
Hi all I am trying to plot the trajectory of the Lorenz system with the axes3d.py module (version 0.87.7). The code is the following: from numpy import * from scipy.integrate import odeint import pylab as p import matplotlib.axes3d as p3 def Lorenz(w, t, s, r, b): x, y, z = w return arra