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