Guest
Public paste!

Luis Tomas Wayar

By: a guest | Feb 9th, 2010 | Syntax: Python | Size: 0.11 KB | Hits: 21 | Expires: Never
Copy text to clipboard
  1. from pylab import *
  2. a = 2
  3. th= linspace(0, 10*pi,200)
  4. r = sqrt(a**2 * th)
  5. polar(th,r)
  6. polar(th, -r)
  7. show()