Re: [Matplotlib-users] contours polar?

2006-12-29 Thread Petr Danecek
Beautiful! The grid lines must be drawn manually? On Thu, 2006-12-28 at 13:32 -0700, Jeff Whitaker wrote: Here's a slightly prettier version of my previous example: from pylab import * deltatheta = 2.*pi/100. theta = arange(0.,2.*pi+0.5*deltatheta,deltatheta) R = arange(0.,pi,deltatheta)

Re: [Matplotlib-users] contours polar?

2006-12-29 Thread Jeff Whitaker
Petr Danecek wrote: Beautiful! The grid lines must be drawn manually? On Thu, 2006-12-28 at 13:32 -0700, Jeff Whitaker wrote: Here's a slightly prettier version of my previous example: from pylab import * deltatheta = 2.*pi/100. theta = arange(0.,2.*pi+0.5*deltatheta,deltatheta) R =

Re: [Matplotlib-users] contours polar?

2006-12-29 Thread Jeff Whitaker
Petr Danecek wrote: Beautiful! The grid lines must be drawn manually? On Thu, 2006-12-28 at 13:32 -0700, Jeff Whitaker wrote: Here's a slightly prettier version of my previous example: from pylab import * deltatheta = 2.*pi/100. theta = arange(0.,2.*pi+0.5*deltatheta,deltatheta) R =

Re: [Matplotlib-users] contours polar?

2006-12-29 Thread Eric Firing
Petr Danecek wrote: Hello, first of all: thanks for the great software!! After the years of struggling with gnuplot, i really enjoy making my graphs with matplotlib. I'd like to ask, if it is possible to create a contour graph using polar coordinates? If not, can someone give me some