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

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