Skip to content
Snippets Groups Projects
Select Git revision
  • d5e5d794a57d9f80a578578bcccb85a39091bdfb
  • master default protected
2 results

ur10test.py

Blame
  • matline.py 152 B
    #
    # matline.py
    # (c) Neil Gershenfeld  2/5/05
    # plot sin(x)/x with matplotlib
    #
    
    from pylab import *
    x = arange(-25.5,25.5,0.1)
    plot(x,sin(x)/x)
    show()