blob: 7d5b9513167dba920942572c159336958e990c2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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));
}
|