Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

serialtimetest.2.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()