From: Bill B. <wb...@gm...> - 2006-02-21 01:48:18
|
On 2/20/06, Bill Baxter <wb...@gm...> wrote: > > Should have mentioned -- I was using numpy 0.9.4 / scipy 0.4.4. > > Looks like it works in numpy 0.9.5 / scipy 0.4.6 > > > > But matplotlib, which I also need, hasn't been updated for numpy 0.9.5y= et. > > :-( > > > > On 2/21/06, Jonathan Taylor wrote: > > For matplotlib, I just use tolist() like > > a =3D array([1,3,2,3]) > > ... > > pylab.plot(a.tolist()) > > Maybe that will work for you until you can fix your problem. > J. Excellent idea! That does the trick for now (if I take the numerix: numpy line out of my .matplotlibrc to stop it from crashing on import). --bb |