home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progbas / realfun.arj / COMPLIST.TXT < prev    next >
Text File  |  1991-07-20  |  5KB  |  110 lines

  1.  
  2.  
  3. RealFun:  Real & Complex Math Libraries for QuickBASIC
  4. COMPLIST.TXT
  5.  
  6.         Compfun.lib:  Alphabetic Function Listing
  7.  
  8.  
  9. Fun/Sub     No.   S/D    Comments
  10.  
  11. acos         1     s     inverse cosine, radians
  12. acosd        1     s     inverse cosine, degrees
  13. acosh        1     s     inverse hyperbolic cosine
  14. amax         2     s     maximum
  15. amin         2     s     minimum
  16. amod         2     s     modulo, floating point
  17. asin         1     s     inverse sine, radians
  18. asind        1     s     inverse sine, degrees
  19. asinh        1     s     inverse hyperbolic sine
  20. atan         2     s     inverse tangent, radians, quadrant specific
  21. atand        2     s     inverse tangent, degrees, quadrant specific
  22. atanh        1     s     inverse hyperbolic tangent
  23. atnd         1     s     inverse tangent, degrees, non-quadrant specific
  24. cabs         3     s     magnitude
  25. cacos        4     s     complex inverse cosine
  26. cacosh       4     s     complex inverse hyperbolic cosine
  27. casin        4     s     complex inverse sine
  28. casinh       4     s     complex inverse hyperbolic sine
  29. catan        4     s     complex inverse tangent
  30. catanh       4     s     complex inverse hyperbolic tangent
  31. ccart        4     s     polar to rectangular coordinates
  32. ccartd       4     s     polar to rectangular coordinates, degrees
  33. ccos         4     s     complex cosine
  34. ccosh        4     s     complex hyperbolic cosine
  35. cdabs        3     d     magnitude
  36. cdacos       4     d     complex inverse cosine
  37. cdacosh      4     d     complex inverse hyperbolic cosine
  38. cdasin       4     d     complex inverse sine
  39. cdasinh      4     d     complex inverse hyperbolic sine
  40. cdatan       4     d     complex inverse tangent
  41. cdatanh      4     d     complex inverse hyperbolic tangent
  42. cdcart       4     d     polar to rectangular coordinates
  43. cdcartd      4     d     polar to rectangular coordinates, degrees
  44. cdcos        4     d     complex cosine
  45. cdcosh       4     d     complex hyperbolic cosine
  46. cddiv        6     d     divide
  47. cdexp        4     d     exponentiation
  48. cdiv         6     s     divide
  49. cdlog        4     d     logarithm
  50. cdmod        6     d     complex modulo
  51. cdmult       6     d     multiply
  52. cdpolar      4     d     rectangular to polar coordinates
  53. cdpolard     4     d     rectangular to polar coordinates, degrees
  54. cdpower      6     d     raise complex number to complex power
  55. cdsin        4     d     complex sine
  56. cdsinh       4     d     complex hyperbolic sine
  57. cdtan        4     d     complex tangent
  58.  
  59. cdtanh       4     d     complex hyperbolic tangent
  60. cexp         4     s     exponentiation
  61. clog         4     s     logarithm
  62. cmod         6     s     complex modulo
  63. cmult        6     s     multiply
  64. cosd         1     s     cosine, degrees
  65. cosh         1     s     hyperbolic cosine
  66. cpolar       4     s     rectangular to polar coordinates
  67. cpolard      4     s     rectangular to polar coordinates, degrees
  68. cpower       6     s     raise complex number to complex power
  69. csin         4     s     complex sine
  70. csinh        4     s     complex hyperbolic sine
  71. ctan         4     s     complex tangent
  72. ctanh        4     s     complex hyperbolic tangent
  73. dacos#       1     d     inverse cosine, radians
  74. dacosd#      1     d     inverse cosine, degrees
  75. dacosh#      1     d     inverse hyperbolic cosine
  76. dasin#       1     d     inverse sine, radians
  77. dasind#      1     d     inverse sine, degrees
  78. dasinh#      1     d     inverse hyperbolic sine
  79. datan#       2     d     inverse tangent, radians, quadrant specific
  80. datand#      2     d     inverse tangent, degrees, quadrant specific
  81. datanh#      1     d     inverse hyperbolic tangent
  82. datnd#       1     d     inverse tangent, degrees, non-quadrant specific
  83. dcosd#       1     d     cosine, degrees
  84. dcosh#       1     d     hyperbolic cosine
  85. dmax#        2     d     maximum
  86. dmin#        2     d     minimum
  87. dmod#        2     d     modulo, floating point
  88. dnearint     4     d     nearest integer, returns long integers
  89. drpower      5     d     raise complex number to real power
  90. dsind#       1     d     sine, degrees
  91. dsinh#       1     d     hyperbolic sine
  92. dtand#       1     d     tangent, degrees
  93. dtanh#       1     d     hyperbolic tangent
  94. nearint      4     s     nearest integer, returns short integers
  95. rpower       5     s     raise complex number to real power
  96. sind         1     s     sine, degrees
  97. sinh         1     s     hyperbolic sine
  98. tand         1     s     tangent, degrees
  99. tanh         1     s     hyperbolic tangent
  100.  
  101.  
  102. Notes:
  103. - Fun/Sub refers to the function or subprogram name.  Items that deal with
  104.         real numbers are functions (DECLARE FUNCTON); those that deal with
  105.         complex numbers are subprograms (DECLARE SUB).
  106. - No. refers to the number of arguments in the calling and declaration
  107.         statements.
  108. - S/D refers to the precision of the arguments and return values:  s = single-
  109.         precision, d = double-precision.
  110.