blob: 187ccf0f6e1672fa11e31c1e0469ffcd188a5b20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* csinhl.c */
/*
Contributed by Danny Smith
2005-01-04
*/
#include <math.h>
#include <complex.h>
/* csinh (x + I * y) = sinh (x) * cos (y)
+ I * (cosh (x) * sin (y)) */
long double complex csinhl (long double complex Z)
{
long double complex Res;
__real__ Res = sinhl (__real__ Z) * cosl (__imag__ Z);
__imag__ Res = coshl (__real__ Z) * sinl (__imag__ Z);
return Res;
}
|