mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
22 lines
359 B
C
22 lines
359 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double sin(), cos(), sinh(), cosh();
|
|
VOID z_sin(r, z) doublecomplex *r, *z;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void z_sin(doublecomplex *r, doublecomplex *z)
|
|
#endif
|
|
{
|
|
double zi = z->i, zr = z->r;
|
|
r->r = sin(zr) * cosh(zi);
|
|
r->i = cos(zr) * sinh(zi);
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|