blob: 4d25447ba22427f94f2d3e7b80d4e39597a0dfaa [file] [log] [blame]
/*
clog.c
Contributed by Danny Smith
2003-10-20
*/
/* clog (x + I * y) = log (hypot (x, y)) + I * atan2 (y, x) */
#include <math.h>
#include <complex.h>
double complex clog (double complex Z)
{
double complex Res;
__real__ Res = log (_hypot (__real__ Z, __imag__ Z));
__imag__ Res = carg (Z);
return Res;
}