home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / djlsr106.arj / ATANH.C < prev    next >
C/C++ Source or Header  |  1991-07-20  |  85b  |  7 lines

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