Re: [Matplotlib-users] Automatic Marker Generation

2007-10-04 Thread Robert Kern
David D Clark wrote: > Hi Folks, > > I have an array A=f(x) with a family of curves. Is there an easy way to > get a different marker for each line of plot(x,A). Use itertools.cycle() to make an iterator that goes round-and-round. Use itertools.izip() to match it up with your data, and perhaps a

[Matplotlib-users] Automatic Marker Generation

2007-10-04 Thread David D Clark
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Folks, I have an array A=f(x) with a family of curves. Is there an easy way to get a different marker for each line of plot(x,A). This is what I currently have: mrkrs=array(['o','^','v','<','>', 's','+','x','D','d', '1'