home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / baswiz19.zip / BW$BAS.ZIP / ARCSINHS.BAS < prev    next >
BASIC Source File  |  1993-01-29  |  641b  |  12 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        BASWIZ  Copyright (c) 1990-1993  Thomas G. Hanlin III         |
  4. '   |                                                                      |
  5. '   |                      The BASIC Wizard's Library                      |
  6. '   |                                                                      |
  7. '   +----------------------------------------------------------------------+
  8.  
  9. FUNCTION ArcSinHS! (Nr AS SINGLE)
  10.    ArcSinHS! = LOG(Nr + SQR(Nr * Nr + 1!))
  11. END FUNCTION
  12.