Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-13 Thread John Hunter
Eric == Eric Firing [EMAIL PROTECTED] writes: Eric To reply more directly to your proposal now that I have Eric thought about it more: although I see the logic in it, I Eric don't see much gain from your Nx2 idea; it not very hard to Eric simply write P.plot(z[:,0], z[:,1]).

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-13 Thread Alan G Isaac
On Thu, 13 Jul 2006, John Hunter apparently wrote: from numpy import rand That has become: from numpy.random import rand Cheers, Alan Isaac - Using Tomcat but need to do more? Need to support web services,

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-13 Thread Stefan van der Walt
On Thu, Jul 13, 2006 at 07:45:37AM -0500, John Hunter wrote: Eric == Eric Firing [EMAIL PROTECTED] writes: Eric To reply more directly to your proposal now that I have Eric thought about it more: although I see the logic in it, I Eric don't see much gain from your Nx2 idea; it not

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Stefan van der Walt
On Tue, Jul 11, 2006 at 10:53:59PM -0400, Charlie Moad wrote: 2006-06-22 Added support for numerix 2-D arrays as alternatives to a sequence of (x,y) tuples for specifying paths in collections, quiver, contour, pcolor, transforms. Fixed contour bug involving

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Charlie Moad
The modules have been imported into the matplotlib repository, and they are semi-functional. They still need a lot of work though. There is a new example, simple3d_oo.py. - Charlie On 7/11/06, imcs ee [EMAIL PROTECTED] wrote: what about the mplot3d.

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Alan G Isaac
On Wed, 12 Jul 2006, Stefan van der Walt apparently wrote: It would be useful to have plot accept a 2-D array as well. Would patches for this be considered, or is there some reason why this can't work? At the moment, doing P.plot(z) where z is Nx2 If 2-D is allowed, I hope N×K is

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Eric Firing
Alan G Isaac wrote: On Wed, 12 Jul 2006, Stefan van der Walt apparently wrote: It would be useful to have plot accept a 2-D array as well. Would patches for this be considered, or is there some reason why this can't work? At the moment, doing P.plot(z) where z is Nx2 If 2-D is

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-12 Thread Alan G Isaac
On Wed, 12 Jul 2006, Eric Firing apparently wrote: In the single-argument NxK case, I think matlab plots subsequent columns against the first column. Is this what you would like? Yes. Cheers, Alan Isaac - Using

[Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-11 Thread Charlie Moad
On 7/7/06, John Hunter [EMAIL PROTECTED] wrote: We'd like to do a bugfix release for the next release of enthought python, which will include the latest mpl. Apparently, there is a problem with 0.87.3 and numpy which has been fixed in svn. If there is anything we should wait on, let us

Re: [Matplotlib-users] ANN: matplotlib-0.87.4 (bugfix release for enthon)

2006-07-11 Thread imcs ee
what about the mplot3d. (http://www.scipy.org/Cookbook/Matplotlib/mplot3D) it works nice under matplotlib0.86.2 but it can't work under matplotlib 0.87.3(with numpy or numeric). On 7/12/06, Charlie Moad [EMAIL PROTECTED] wrote: On 7/7/06, John Hunter [EMAIL PROTECTED] wrote: We'd like to do