home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / !Graph / examples / Fourier next >
Encoding:
Text File  |  1996-08-20  |  224 b   |  12 lines

  1. ; test of graph
  2.  
  3. xrange -5 5
  4. yrange  -2 2
  5. grid 1 .5
  6. axes 0 0
  7. steps 100
  8. plot 2*(int(x/pi+5)%2)-1
  9. colour red
  10. plot 4/pi*(sin(x)+sin(3*x)/3+sin(5*x)/5+sin(7*x)/7)
  11. colour black
  12. title A sqare(ish) wave and a Fourier approximation.