blob: 98bb84ffb22c3db41d2c67dd73abbda534dbf2c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "f2c.h"
extern void pow_zi(doublecomplex*, doublecomplex*, integer*);
void pow_ci(complex *p, complex *a, integer *b) /* p = a**b */
{
doublecomplex p1, a1;
a1.r = a->r;
a1.i = a->i;
pow_zi(&p1, &a1, b);
p->r = p1.r;
p->i = p1.i;
}
|