Re: [Plplot-devel] Numpy issue

2009-04-09 Thread Hazen Babcock
Alan W. Irwin wrote: > On 2009-04-08 19:33-0400 Hazen Babcock wrote: > >> Hello, >> >> Apologies if this has already been reported... >> >> While using Numpy and PLplot I've stumbled over a potential problem with >> the interface. Numpy arrays are not necessarily contiguous in memory, >> i.e. if I

Re: [Plplot-devel] Numpy issue

2009-04-08 Thread Alan W. Irwin
On 2009-04-08 19:33-0400 Hazen Babcock wrote: > > Hello, > > Apologies if this has already been reported... > > While using Numpy and PLplot I've stumbled over a potential problem with > the interface. Numpy arrays are not necessarily contiguous in memory, > i.e. if I have a 2D array: > > p = [[1,

[Plplot-devel] Numpy issue

2009-04-08 Thread Hazen Babcock
Hello, Apologies if this has already been reported... While using Numpy and PLplot I've stumbled over a potential problem with the interface. Numpy arrays are not necessarily contiguous in memory, i.e. if I have a 2D array: p = [[1,2],[2,3],[3,4]] And I do: plplot.plpoin(p[:,0], p[:,1], 9)