Sign in
gnu
/
gcc
/
d01fc6a3172f05d1618263450c1c9f13737acf57
/
.
/
libf2c
/
libF77
/
c_cos.c
blob: 59659754978f139f8189c83c5e3ec0b4d158cffe [
file
] [
log
] [
blame
]
#include
"f2c.h"
#undef
abs
#include
"math.h"
void
c_cos
(
complex
*
r
,
complex
*
z
)
{
double
zi
=
z
->
i
,
zr
=
z
->
r
;
r
->
r
=
cos
(
zr
)
*
cosh
(
zi
);
r
->
i
=
-
sin
(
zr
)
*
sinh
(
zi
);
}