1998-02-01 02:37:08 +01:00
|
|
|
#include "f2c.h"
|
|
|
|
|
|
|
|
#undef abs
|
1999-05-03 10:33:21 +02:00
|
|
|
#include "math.h"
|
1998-02-01 02:37:08 +01:00
|
|
|
|
2002-06-01 14:38:32 +02:00
|
|
|
void
|
|
|
|
c_sin (complex * r, complex * z)
|
1998-02-01 02:37:08 +01:00
|
|
|
{
|
2002-06-01 14:38:32 +02:00
|
|
|
double zi = z->i, zr = z->r;
|
|
|
|
r->r = sin (zr) * cosh (zi);
|
|
|
|
r->i = cos (zr) * sinh (zi);
|
|
|
|
}
|