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

  1. asinh(0) := 0
  2. asinh(inf) := inf
  3. asinh(-inf) := -inf
  4. asinh(x_) := if( isnumber(x) and numeric==on, ln(x+sqrt(x^2+1)) )
  5.