home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / maj / 2199 / examples / fn.plt < prev    next >
Text File  |  1994-07-09  |  1KB  |  44 lines

  1. # Script for drawing the graph of a function
  2.  
  3. units cm
  4. paper size 29.6 by 20.9
  5. noborder
  6. nobeep
  7.  
  8. # Set up domain and co-domain
  9. map x -0.1 0.1        # Specify domain if desired
  10. #map y                # Specify co-domain if desired 
  11. sample 500            # Use 500 points across
  12.  
  13. # Draw the curve
  14. color lred
  15. plot x**2*sin(1/x)
  16.  
  17. # Draw the axes, etc
  18. color green
  19. tics out              # Tics facing outwards
  20. tics size .5 .2       # Major tics .5 cm long, minor tics .2 cm long
  21.  
  22. divisions x 4,5       # 4 major divisions with 5 minor divisions between 
  23. format x 2            # Show 2 decimal places on X-axis
  24. char size .4          # Character height on X-axis = .4 cm 
  25. #grid color green     # Turn grid drawing on if desired
  26. draw x                # Draw X-axis
  27. #nogrid               # Turn grid drawing off if desired
  28. xlabel 'X'            # Label the X-axis
  29.  
  30. divisions y 4,1       # 4 major divisions
  31. format y 3            # Show 3 decimal places on Y-axis
  32. char size .4          # Character height on X-axis = .4 cm 
  33. #grid color green     # Turn grid drawing on if desired
  34. draw y                # Draw Y-axis
  35. #nogrid               # Turn grid drawing off if desired
  36. ylabel 'Y'            # Label the Y-axis
  37.  
  38. char size 1
  39. title 'GRAPHFN.PLT'
  40.  
  41. # Hardcopy to dotmatrix 24 pin if desired
  42. # dump hpgl
  43. # $d:\grafsys\printgl graphica.hpg /FT*
  44.