home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libF77 / z_cos.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  179 b   |  11 lines

  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. }
  11.