You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
349 B
C
26 lines
349 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
extern double exp(), cos(), sin();
|
|
|
|
VOID c_exp(r, z) complex *r, *z;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void c_exp(complex *r, complex *z)
|
|
#endif
|
|
{
|
|
double expx, zi = z->i;
|
|
|
|
expx = exp(z->r);
|
|
r->r = expx * cos(zi);
|
|
r->i = expx * sin(zi);
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|