Sign in
◑
Theme
mojo
/
mojo-tools
/
e72c5b36e0633399dfe0f906be25cdf0fc0935be
/
.
/
fusl
/
src
/
complex
/
cabs.c
blob: a03619e0b50d71e369d721bd42eaa9163901af13 [
file
]
#include
"libm.h"
double
cabs
(
double
complex z
)
{
return
hypot
(
creal
(
z
),
cimag
(
z
));
}