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