home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / python / !Graph / examples / Normal < prev    next >
Text File  |  1996-08-20  |  140b  |  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.