home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progc
/
djlsr106.arj
/
ATANH.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-20
|
85b
|
7 lines
#include <math.h>
double atanh(double x)
{
return log((1+x)/(1-x)) / 2.0;
}