home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a075 / 1.img / TOOLKIT1.EXE / SST155.PRG < prev    next >
Encoding:
Text File  |  1989-08-13  |  450 b   |  28 lines

  1. ********************
  2.  
  3. FUNCTION Arccot
  4.  
  5.    * Written and contributed by ESSOR MASO
  6.    *
  7.    * ABS(arg) < 10^9
  8.    *
  9.    * The error ABS(e(arg)) <= 2*10^(-8)
  10.    *
  11.    * Correct form: ARCCOT(arg)
  12.    *
  13.    * National Bureau of Standards Handbook of Mathematical Functions
  14.  
  15.    PARAMETERS _clwork
  16.  
  17.    IF TYPE("_clwork") != "N"
  18.       RETURN(-1)
  19.    ENDIF
  20.  
  21.    SET DECIMAL TO 10
  22.  
  23.    RETURN(1.57079633 - Arctan(_clwork))
  24.  
  25. * End of File
  26.  
  27.  
  28.