freebsd-skq/contrib/libf2c/libF77/z_cos.c

12 lines
195 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
#undef abs
1999-09-19 05:59:11 +00:00
#include "math.h"
2003-07-11 03:42:19 +00:00
void
z_cos (doublecomplex * r, doublecomplex * z)
1999-09-18 10:51:31 +00:00
{
2003-07-11 03:42:19 +00:00
double zi = z->i, zr = z->r;
r->r = cos (zr) * cosh (zi);
r->i = -sin (zr) * sinh (zi);
}