Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
complex
/
catanh.c
blob: e248d9b934135c5b474d16223c520109f0ed3d71 [
file
] [
log
] [
blame
]
#include
"libm.h"
/* atanh = -i atan(i z) */
double
complex catanh
(
double
complex z
)
{
z
=
catan
(
CMPLX
(-
cimag
(
z
),
creal
(
z
)));
return
CMPLX
(
cimag
(
z
),
-
creal
(
z
));
}