home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / z_sin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  171 b   |  11 lines

  1. #include "f2c.h"
  2.  
  3. VOID z_sin(r, z)
  4. doublecomplex *r, *z;
  5. {
  6. double sin(), cos(), sinh(), cosh();
  7.  
  8. r->r = sin(z->r) * cosh(z->i);
  9. r->i = cos(z->r) * sinh(z->i);
  10. }
  11.