home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rexxma.zip / REXXMATH.DOC < prev    next >
Text File  |  1994-03-22  |  1KB  |  57 lines

  1. REXXMATH v1.0 03/22/94 by Zhitao Zeng Footprint Software Inc.
  2.  
  3. This program is released to the public domain, feel free to use
  4. it for any purposes.
  5.  
  6. If you have any suggestions, please email to Zhitao Zeng at:   
  7.    CIS: 72000,2440                                                
  8.    Internet: zzeng@footprint.com                                  
  9.  
  10. The REXXMATH.DLL is the rexx interface to the mathematics functions
  11. found in C runtime libraries.  Refer to any C runtime library
  12. reference manual for details on how to use those functions.
  13.  
  14. ANSI Math Functions
  15.  
  16. acos( x )
  17. asin( x )
  18. atan( x )
  19. atan2( x, y )
  20. ceil( x )
  21. cos( x )
  22. cosh( x )
  23. exp( x )
  24. fabs( x )
  25. floor( x )
  26. fmod( x, y )
  27. frexp( x )   // two values are returned
  28. ldexp( x, i )
  29. log( x )
  30. log10( x )
  31. modf( x )    // two values are returned
  32. pow( x, y )
  33. sin( x )
  34. sinh( x )
  35. sqrt( x )
  36. tan( x )
  37. tanh( x )
  38.  
  39.  
  40. Non-ANSI Math Functions
  41.  
  42. hypot( x, y )
  43. j0( x )
  44. j1( x )
  45. jn( i, x )
  46. y0( x )
  47. y1( x )
  48. yn( i, x )
  49. pi()
  50.  
  51. Available when REXXMATH is compiled with IBM C Set/2
  52. erf( x )
  53. erfc( x )
  54. gamma( x )
  55.  
  56.  
  57.