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

17 lines
267 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
2003-07-11 03:42:19 +00:00
extern void pow_zi (doublecomplex *, doublecomplex *, integer *);
void
pow_ci (complex * p, complex * a, integer * b) /* p = a**b */
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
doublecomplex p1, a1;
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
a1.r = a->r;
a1.i = a->i;
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
pow_zi (&p1, &a1, b);
1999-09-18 10:51:31 +00:00
2003-07-11 03:42:19 +00:00
p->r = p1.r;
p->i = p1.i;
1999-09-18 10:51:31 +00:00
}