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
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,
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)