home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e067 / 1.ddi / PLOT3D.MTH < prev    next >
Encoding:
Text File  |  1988-07-07  |  1.0 KB  |  39 lines

  1. ; Esc select Plot Plot, Delete All, Algebra, Transfer Demo
  2. 1 / (9 + x^2 + y^2)
  3. ; A mountain and a crater
  4. - y / (9 + x^2 + y^2)
  5. ; Two mountains
  6. 1 / (9 + x^2 + (y - 3)^2) + 1 / (9 + x^2 + (y + 3)^2)
  7. ; A hanging valley
  8. 7 * x^2 - y^3
  9. ; A saddle
  10. y^2 - x^2
  11. ; A sway-back roof
  12. y^2 / 5 - 3 * ABS x
  13. ; A pinched ridge
  14. (y^2 + 1/10) / (x^2 + y^2 + 1/10)
  15. ; A monkey saddle
  16. y * (3 * x^2 - y^2)
  17. ; A pinched monkey saddle
  18. x*y * (SIGN (x + 1/10) * SQRT (x^2 + y^2) + 2*y) / (x^2 + y^2 + 1/10)
  19. ; Intersecting ridges
  20. - SQRT ABS (x*y)
  21. ; A pagoda roof
  22. - SQRT ABS x - SQRT ABS y
  23. ; A ridge intersecting a valley
  24. SQRT ABS x - SQRT ABS y
  25. ; A ridge that becomes a valley
  26. - y * SQRT ABS x
  27. ; A volcano
  28. 50 / (50 + ((x^2 + y^2)^(1/2) - 37/10)^2) - 1
  29. ; A sombrero
  30. COS ((x^2 + y^2) / 4) / (3 + x^2 + y^2)
  31. ; A surfer's perfect wave
  32. EXP (- x/9) * (pi / 2 - ATAN y)
  33. ; A cliff is born
  34. ATAN (- y, x + 1/10)
  35. ; Two mountains separated by a crater
  36. - COS (3 * PI * X/10) * COS (PI * Y /10)
  37. ; Three mountains
  38. - COS (3 * PI * X/10) * SIN (PI * Y/5)
  39.