home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e067 / 1.ddi / PLOT2D.MTH < prev    next >
Encoding:
Text File  |  1988-11-02  |  867 b   |  37 lines

  1. ; Esc select Plot Plot, Delete All, Algebra, Transfer Demo
  2. 2 SIN LN ABS x
  3. ; The top half of a dog bone
  4. x^2 * SQRT (15 - x^2) / 10
  5. ; Water waves have sharper crests than troughs
  6. SEC SIN x
  7. ; The frequency approaches infinity as x approaches 0
  8. x * SIN (2/x)
  9. ; A super power
  10. (abs (x/2))^abs (x/2)
  11. ; A surprising nearly-straight line
  12. ASIN ATAN (0.4 * x)
  13. ; Surprising near-triangular waves
  14. TAN COS x
  15. ; Triangular waves
  16. ATAN TAN x
  17. ; Sawtooth waves
  18. ASIN SIN x
  19. ; Surprising near-square waves
  20. COTH SEC x + TANH SEC x
  21. ; Square waves
  22. SIGN COS x
  23. ; Arches
  24. 2 SQRT ABS SIN x
  25. ; Pointed Moorish arches
  26. - SQRT ABS COT (0.8 x)
  27. ; Hump waves
  28. 3 SECH SEC x
  29. ; Stepped waves
  30. 2 CSCH SEC x
  31. ; Essential singularity (all derivatives = 0 at x=0)
  32. 4 * EXP (-1 / ABS x) - 2
  33. ; A self-similar self-composition
  34. SIN SIN x
  35. ; A self-similar self-composition
  36. ATAN ATAN x
  37.