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

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