summaryrefslogtreecommitdiffstats
path: root/lib/libF77/z_cos.c
blob: fdd1510db48f7c8e57aa0b355d716337e2b8f918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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
{
	double zr = z->r;
	r->r =   cos(zr) * cosh(z->i);
	r->i = - sin(zr) * sinh(z->i);
	}
OpenPOWER on IntegriCloud