home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / m / src / atanh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-20  |  85 b   |  7 lines

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