blob: 31d09e3ec2389bf730c0e088e4d84f8172b3eac6 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
/*
ccoshl.c
Contributed by Danny Smith
2005-01-04
*/
#include <math.h>
#include <complex.h>
/* ccosh (x + I * y) = cosh (x) * cos (y)
+ I * (sinh (x) * sin (y)) */
long double complex ccoshl (long double complex Z)
{
long double complex Res;
__real__ Res = coshl (__real__ Z) * cosl (__imag__ Z);
__imag__ Res = sinhl (__real__ Z) * sinl (__imag__ Z);
return Res;
}