1: #include "complex"
   2: 
   3: z_cos(r, z)
   4: dcomplex *r, *z;
   5: {
   6: double sin(), cos(), sinh(), cosh();
   7: 
   8: r->dreal = cos(z->dreal) * cosh(z->dimag);
   9: r->dimag = - sin(z->dreal) * sinh(z->dimag);
  10: }

Defined functions

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