09c656ca68
Obtained from: netlib.att.com
15 lines
267 B
C
15 lines
267 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double sin(), cos(), sinh(), cosh();
|
|
VOID z_sin(r, z) doublecomplex *r, *z;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
void z_sin(doublecomplex *r, doublecomplex *z)
|
|
#endif
|
|
{
|
|
r->r = sin(z->r) * cosh(z->i);
|
|
r->i = cos(z->r) * sinh(z->i);
|
|
}
|