Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
complex
/
ctan.c
blob: c09263744b869b92e03fc5c956a18178b089d655 [
file
]
#include
"libm.h"
/* tan(z) = -i tanh(i z) */
double
complex ctan
(
double
complex z
)
{
z
=
ctanh
(
CMPLX
(-
cimag
(
z
),
creal
(
z
)));
return
CMPLX
(
cimag
(
z
),
-
creal
(
z
));
}