home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / ps_ext.zip / RxMath.EXT < prev    next >
Text File  |  1997-05-16  |  480b  |  44 lines

  1. @RxMath
  2. %Load RxMath Functions
  3. $rc = RxFuncAdd("MathLoadFuncs","RxMathFn","MathLoadFuncs")
  4. rc = MathLoadFuncs()
  5. rc = MathLoadFuncs("Quiet")
  6. %Drop RxMath Functions
  7. $rc = MathDropFuncs()
  8. %cos
  9. $cos(x)
  10. %sin
  11. $sin(x)
  12. %tan
  13. $tan(x)
  14. %acos
  15. $acos(x)
  16. %asin
  17. $asin(x)
  18. %atan
  19. $atan(x)
  20. %cosh
  21. $cosh(x)
  22. %sinh
  23. $sinh(x)
  24. %tanh
  25. $tanh(x)
  26. %ceil
  27. $ceil(x)
  28. %floor
  29. $floor(x)
  30. %exp
  31. $exp(x)
  32. %log
  33. $log(x)
  34. %log10
  35. $log10(x)
  36. %sqrt
  37. $sqrt(x)
  38. %pow
  39. $pow(x,y)
  40. %pi
  41. $pi()
  42. %e
  43. $e()
  44.