gcc/libf2c/libF77/c_log.c

13 lines
212 B
C
Raw Normal View History

#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) );
}