16 lines
285 B
C
16 lines
285 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
|
|
{
|
|
double zr = z->r;
|
|
r->r = sin(zr) * cosh(z->i);
|
|
r->i = cos(zr) * sinh(z->i);
|
|
}
|