home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / ACOS.(X) < prev    next >
Text File  |  1993-10-16  |  164b  |  6 lines

  1. #    acos(x) is the arc cosine function of x, the inverse function of 
  2. #    cos(x).
  3. #    See also: cos(x)
  4.  
  5. acos(x_) := if ( isnumber(x) and numeric==on, -i*acosh(x) )
  6.