blob: 59659754978f139f8189c83c5e3ec0b4d158cffe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "f2c.h"
#undef abs
#include "math.h"
void
c_cos (complex * r, complex * z)
{
double zi = z->i, zr = z->r;
r->r = cos (zr) * cosh (zi);
r->i = -sin (zr) * sinh (zi);
}
|