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

  1. #include <math.h>
  2.  
  3. double acosh(double x)
  4. {
  5.   return log(x + sqrt(x*x - 1));
  6. }
  7.