Re: [Matplotlib-users] masking values in quiver plot

2008-09-04 Thread Eric Firing
Jeff Whitaker wrote: > Eric Firing wrote: >> Jeff Whitaker wrote: >>> Michael Roettger wrote: Hi all, maybe I've misunderstood something concerning masking or quiver plots: I want to exclude some data from a quiver plot. Here's an example: 8< >>

[Matplotlib-users] masking values in quiver plot

2008-08-25 Thread Michael Röttger
Hi, maybe I've misunderstood something concerning quiver plots: I want to exclude some data from a quiver plot. Here's an example: 8< import numpy as N import pylab as pl import matplotlib.numerix.ma as ma # prepare data X,Y = pl.meshgrid(range(5),range(5)) angles = pl.r

Re: [Matplotlib-users] masking values in quiver plot

2008-08-22 Thread Jeff Whitaker
Eric Firing wrote: > Jeff Whitaker wrote: >> Michael Roettger wrote: >>> Hi all, >>> >>> maybe I've misunderstood something concerning masking or quiver plots: >>> I want to exclude some data from a quiver plot. Here's an example: >>> >>> 8< >>> import numpy as N >>> import

Re: [Matplotlib-users] masking values in quiver plot

2008-08-22 Thread Eric Firing
Jeff Whitaker wrote: > Michael Roettger wrote: >> Hi all, >> >> maybe I've misunderstood something concerning masking or quiver plots: >> I want to exclude some data from a quiver plot. Here's an example: >> >> 8< >> import numpy as N >> import pylab as pl >> import matplotl

Re: [Matplotlib-users] masking values in quiver plot

2008-08-22 Thread Jeff Whitaker
Michael Roettger wrote: > Hi all, > > maybe I've misunderstood something concerning masking or quiver plots: > I want to exclude some data from a quiver plot. Here's an example: > > 8< > import numpy as N > import pylab as pl > import matplotlib.numerix.ma as ma > > # prepar

Re: [Matplotlib-users] masking values in quiver plot

2008-08-22 Thread Jeff Whitaker
Michael Roettger wrote: > Hi all, > > maybe I've misunderstood something concerning masking or quiver plots: > I want to exclude some data from a quiver plot. Here's an example: > > 8< > import numpy as N > import pylab as pl > import matplotlib.numerix.ma as ma > > # prepar

[Matplotlib-users] masking values in quiver plot

2008-08-22 Thread Michael Roettger
Hi all, maybe I've misunderstood something concerning masking or quiver plots: I want to exclude some data from a quiver plot. Here's an example: 8< import numpy as N import pylab as pl import matplotlib.numerix.ma as ma # prepare data X,Y = pl.meshgrid(range(5),range(5)