Re: [Matplotlib-users] Ovality of a perturbed circular path

2008-12-02 Thread Matt Foster
On Tue, Dec 2, 2008 at 7:44 AM, Nils Wagner <[EMAIL PROTECTED]> wrote: >>> >>> Hi all, >>> >>> I would like to visualize the ovality of a perturbed >>> circular path by a polar plot. >>> How can I improve the view wrt to scaling and ticks ? >> >> ylim(0, 2) >> yticks(arange(0, 2, 0.25)) > Thank yo

Re: [Matplotlib-users] Ovality of a perturbed circular path

2008-12-01 Thread Matt Foster
On Wed, Nov 26, 2008 at 7:11 AM, Nils Wagner <[EMAIL PROTECTED]> wrote: > Hi all, > > I would like to visualize the ovality of a perturbed > circular path by a polar plot. > How can I improve the view wrt to scaling and ticks ? Is: from pylab import ylim, ytics figure(2) polar(theta,(r+noise)/r)

[Matplotlib-users] Ovality of a perturbed circular path

2008-11-25 Thread Nils Wagner
Hi all, I would like to visualize the ovality of a perturbed circular path by a polar plot. How can I improve the view wrt to scaling and ticks ? from pylab import linspace, polar, xticks, yticks, show, savefig, subplot, figure from numpy.random import rand from numpy import ones, exp, pi, r_ t