Re: [Matplotlib-users] parametric plot of two sets of discrete data

2008-01-16 Thread John Hunter
On Jan 2, 2008 10:25 PM, Aitor Gonzalez <[EMAIL PROTECTED]> wrote: > Hi, > > I have some two sets of data with their x- and y-coordinates, (x1, y1) and > (x2, y2). I want to plot these curves as a parametric plot: > # > from numpy import * > from pylab import * > > t = arange ( 0.0 , pi/2 ,

[Matplotlib-users] parametric plot of two sets of discrete data

2008-01-16 Thread Aitor Gonzalez
Hi, I have some two sets of data with their x- and y-coordinates, (x1, y1) and (x2, y2). I want to plot these curves as a parametric plot: # from numpy import * from pylab import * t = arange (0.0 , pi/2 , 0.05) x1= cos(t) y1 = -sin(t) x2 = -1+2/pi*t y2 = -2/pi*t # plotted as a normal pl