freebsd_amp_hwpstate/contrib/libf2c/libF77/c_exp.c

20 lines
282 B
C
Raw Normal View History

1999-09-18 10:51:31 +00:00
#include "f2c.h"
#ifdef KR_headers
extern double exp(), cos(), sin();
1999-09-19 05:59:11 +00:00
VOID c_exp(r, z) complex *r, *z;
1999-09-18 10:51:31 +00:00
#else
#undef abs
1999-09-19 05:59:11 +00:00
#include "math.h"
1999-09-18 10:51:31 +00:00
1999-09-19 05:59:11 +00:00
void c_exp(complex *r, complex *z)
1999-09-18 10:51:31 +00:00
#endif
{
1999-09-19 05:59:11 +00:00
double expx, zi = z->i;
1999-09-18 10:51:31 +00:00
1999-09-19 05:59:11 +00:00
expx = exp(z->r);
r->r = expx * cos(zi);
r->i = expx * sin(zi);
}