home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / python / python_1 / !Graph_examples_Normal < prev    next >
Encoding:
Text File  |  1996-08-20  |  140 b   |  12 lines

  1. ; Normal distribution curve
  2.  
  3. xrange -3 3
  4. yrange -.01 .5
  5. grid 1 .1
  6. axes 0 0
  7. steps 100
  8. title Normal distribution
  9.  
  10. plot  exp(-x*x)/sqrt(2*pi)
  11.  
  12.