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

numpi.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()