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

  1. sinh(0) := 0
  2. sinh(inf) := inf
  3. sinh(-inf) := -inf
  4. sinh(x_) := if( isnumber(x) and numeric==on, (e^x-e^-x)/2 )
  5.