blob: 7d5b9513167dba920942572c159336958e990c2c [file] [log] [blame]
#include "f2c.h"
#undef abs
#include "math.h"
extern double f__cabs (double, double);
void
c_log (complex * r, complex * z)
{
double zi, zr;
r->i = atan2 (zi = z->i, zr = z->r);
r->r = log (f__cabs (zr, zi));
}