# # pylabline.py # (c) Neil Gershenfeld 2/10/08 # plot sin(x)/x with pylab # from pylab import * from numpy import * x = arange(-20.5,20.7,.2) plot(x,sin(x)/x) show()