home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / DERIVE.ZIP / PLOT2D.MTH < prev    next >
Encoding:
Text File  |  1990-02-23  |  888 b   |  54 lines

  1. ; To plot this, press Esc, then press P twice
  2. 2 SIN LN ABS x
  3.  
  4. ; The top half of a dog bone
  5. x^2 * SQRT (15 - x^2) / 10
  6.  
  7. ; Water waves have sharper crests than troughs
  8. SEC SIN x
  9.  
  10. ; The frequency approaches infinity as x approaches 0
  11. x * SIN (2/x)
  12.  
  13. ; A super power
  14. (abs (x/2))^abs (x/2)
  15.  
  16. ; A surprising nearly-straight line
  17. ASIN ATAN (0.4 * x)
  18.  
  19. ; Surprising near-triangular waves
  20. TAN COS x
  21.  
  22. ; Triangular waves
  23. ASIN SIN x
  24.  
  25. ; Sawtooth waves
  26. ATAN TAN x
  27.  
  28. ; Surprising near-square waves
  29. COTH SEC x + TANH SEC x
  30.  
  31. ; Square waves
  32. SIGN COS x
  33.  
  34. ; Arches
  35. 2 SQRT ABS SIN x
  36.  
  37. ; Pointed Moorish arches
  38. - SQRT ABS COT (0.8 x)
  39.  
  40. ; Hump waves
  41. 3 SECH SEC x
  42.  
  43. ; Stepped waves
  44. 2 CSCH SEC x
  45.  
  46. ; Essential singularity (all derivatives = 0 at x=0)
  47. 4 * EXP (-1 / ABS x) - 2
  48.  
  49. ; A self-similar self-composition
  50. SIN SIN x
  51.  
  52. ; A self-similar self-composition
  53. ATAN ATAN x
  54.