blob: ef02be4c38c7f7caf31286c49172bea9d29bae18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "f2c.h"
#ifdef KR_headers
double sin(), cos(), sinh(), cosh();
VOID z_cos(r, z) doublecomplex *r, *z;
#else
#undef abs
#include <math.h>
void z_cos(doublecomplex *r, doublecomplex *z)
#endif
{
r->r = cos(z->r) * cosh(z->i);
r->i = - sin(z->r) * sinh(z->i);
}
|