freebsd-dev/contrib/libf2c/libF77/pow_zi.c

55 lines
784 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
#ifdef KR_headers
1999-09-19 05:59:11 +00:00
VOID pow_zi(p, a, b) /* p = a**b */
doublecomplex *p, *a; integer *b;
1999-09-18 10:51:31 +00:00
#else
extern void z_div(doublecomplex*, doublecomplex*, doublecomplex*);
1999-09-19 05:59:11 +00:00
void pow_zi(doublecomplex *p, doublecomplex *a, integer *b) /* p = a**b */
1999-09-18 10:51:31 +00:00
#endif
{
1999-09-19 05:59:11 +00:00
integer n;
unsigned long u;
double t;
doublecomplex q, x;
static doublecomplex one = {1.0, 0.0};
1999-09-18 10:51:31 +00:00
1999-09-19 05:59:11 +00:00
n = *b;
q.r = 1;
q.i = 0;
1999-09-18 10:51:31 +00:00
1999-09-19 05:59:11 +00:00
if(n == 0)
goto done;
if(n < 0)
1999-09-18 10:51:31 +00:00
{
1999-09-19 05:59:11 +00:00
n = -n;
z_div(&x, &one, a);
1999-09-18 10:51:31 +00:00
}
1999-09-19 05:59:11 +00:00
else
1999-09-18 10:51:31 +00:00
{
1999-09-19 05:59:11 +00:00
x.r = a->r;
x.i = a->i;
1999-09-18 10:51:31 +00:00
}
1999-09-19 05:59:11 +00:00
for(u = n; ; )
{
if(u & 01)
{
t = q.r * x.r - q.i * x.i;
q.i = q.r * x.i + q.i * x.r;
q.r = t;
}
if(u >>= 1)
{
t = x.r * x.r - x.i * x.i;
x.i = 2 * x.r * x.i;
x.r = t;
}
else
break;
}
done:
p->i = q.i;
p->r = q.r;
}