Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
complex
/
carg.c
blob: d2d1b4623a7fc77b2d413c363fd2ccef8d892939 [
file
]
#include
"libm.h"
double
carg
(
double
complex z
)
{
return
atan2
(
cimag
(
z
),
creal
(
z
));
}