home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / c / djgpp / libsrc / m / sinh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-10  |  88 b   |  8 lines

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