home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / DJGPP / DJLSR106.ZIP / LIBSRC / M / SRC / COSH.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-10  |  86 b   |  7 lines

  1. #include <math.h>
  2.  
  3. double cosh(double x)
  4. {
  5.   return (exp(x) + exp(-x)) / 2.0;
  6. }
  7.