home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / progrmng / function.zoo / readme < prev    next >
Text File  |  1990-11-07  |  2KB  |  41 lines

  1. This package contains QuickBASIC (v 4.5) library files (.qlb and .lib) that
  2. extend QB's intrinsic functions for real and complex numbers.  The following
  3. files should be in this archive:
  4.  
  5.      README         (this file)
  6.      REALFUNC.BAS   (QB source code for real function library)
  7.      REALFUN.QLB
  8.      REALFUN.LIB    (library files for real functions)
  9.      REALFUN.DOC    (documentation on real functions and library)
  10.      COMPFUNC.BAS   (QB source code for complex function library)
  11.      COMPFUN.QLB
  12.      COMPFUN.LIB    (library files for complex functions)
  13.      COMPFUN.DOC    (documentation on complex functions and library)
  14.  
  15. The real library essentially extends QB to include standard FORTRAN functions.
  16. It also includes a modulo function that returns floating point values, and
  17. minimum and maximum functions.  These are all QB subprogram functions, ie, you
  18. need to include a 'DECLARE FUNCTION' statement in your program to use them.  
  19.  
  20. The complex library allows you to handle complex numbers by either storing the
  21. real and imaginary parts, or the magnitude and phase.  Since a subprogram
  22. using complex numbers will in general need to return both parts of the answer,
  23. the functions were written as subprograms, ie, you need to include a 'DECLARE
  24. SUB' statement in your program.  The complex library is a superset of the real
  25. library, and includes cartesian-polar and polar-cartesian routines, division
  26. and multiplication, logs and exponentials, and the circular and hyperbolic
  27. trig functions.
  28.  
  29. Both libraries have all routines in single and double precision.  The source
  30. code for all functions and subprograms is included.
  31.  
  32. I release this into the public domain, and do so without warranty of any kind.
  33. Void where prohibited by law.  Not for internal consumption.  Your mileage
  34. may vary.
  35.  
  36. Kerry Mitchell
  37. mitchell@acodkris.larc.nasa.gov
  38. lkmitch@gn.ecn.purdue.edu
  39. Compuserve 70152,1444
  40.  
  41.