1: #include "complex"
   2: 
   3: pow_ci(p, a, b)     /* p = a**b  */
   4: complex *p, *a;
   5: long int *b;
   6: {
   7: dcomplex p1, a1;
   8: 
   9: a1.dreal = a->real;
  10: a1.dimag = a->imag;
  11: 
  12: pow_zi(&p1, &a1, b);
  13: 
  14: p->real = p1.dreal;
  15: p->imag = p1.dimag;
  16: }

Defined functions

pow_ci defined in line 3; never used
Last modified: 1979-01-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 404
Valid CSS Valid XHTML 1.0 Strict