Re: [Matplotlib-users] Two bugs in quiver?

2009-01-20 Thread George Nurser
Downloaded latest svn numpy and matplotlib and it works perfectly now. Thanks for sorting it out so quickly. George. 2009/1/20 Eric Firing efir...@hawaii.edu: George Nurser wrote: I think there may be two bugs in quiver. Actually just 1... 1. Quiver doesn't seem to accept 1D arrays X and

[Matplotlib-users] Two bugs in quiver?

2009-01-19 Thread George Nurser
I think there may be two bugs in quiver. 1. Quiver doesn't seem to accept 1D arrays X and Y if they are different sizes -- they need to be turned into 2d arrays with meshgrid for the program to work. With line 13 uncommented I get the following error message: File quivtest.py, line 13, in

Re: [Matplotlib-users] Two bugs in quiver?

2009-01-19 Thread Eric Firing
George Nurser wrote: I think there may be two bugs in quiver. Thanks for the report. I can reproduce both problems, and I will try to solve them. Eric 1. Quiver doesn't seem to accept 1D arrays X and Y if they are different sizes -- they need to be turned into 2d arrays with meshgrid

Re: [Matplotlib-users] Two bugs in quiver?

2009-01-19 Thread Eric Firing
George Nurser wrote: I think there may be two bugs in quiver. Actually just 1... 1. Quiver doesn't seem to accept 1D arrays X and Y if they are different sizes -- they need to be turned into 2d arrays with meshgrid for the program to work. With line 13 uncommented I get the following