Codebase list libf2c2 / c9e37887-a36e-4428-ab31-967b3d1ea548/main c_sin.c
c9e37887-a36e-4428-ab31-967b3d1ea548/main

Tree @c9e37887-a36e-4428-ab31-967b3d1ea548/main (Download .tar.gz)

c_sin.c @c9e37887-a36e-4428-ab31-967b3d1ea548/mainraw · history · blame

#include "f2c.h"

#ifdef KR_headers
extern double sin(), cos(), sinh(), cosh();

VOID c_sin(r, z) complex *r, *z;
#else
#undef abs
#include "math.h"
#ifdef __cplusplus
extern "C" {
#endif

void c_sin(complex *r, complex *z)
#endif
{
	double zi = z->i, zr = z->r;
	r->r = sin(zr) * cosh(zi);
	r->i = cos(zr) * sinh(zi);
	}
#ifdef __cplusplus
}
#endif