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

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