Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
complex
/
cacosh.c
blob: 8c68cb01fd6039eafaa856a7f3130a425b7504f6 [
file
]
#include
"libm.h"
/* acosh(z) = i acos(z) */
double
complex cacosh
(
double
complex z
)
{
z
=
cacos
(
z
);
return
CMPLX
(-
cimag
(
z
),
creal
(
z
));
}