blob: ccdae83fadc553800a98ee0462e11d806bab9984 [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.
*/
/*
Contributed by Danny Smith
2004-12-24
*/
#include <math.h>
#include <complex.h>
/* csinh (x + I * y) = sinh (x) * cos (y)
+ I * (cosh (x) * sin (y)) */
float complex csinhf (float complex Z)
{
float complex Res;
__real__ Res = sinhf (__real__ Z) * cosf (__imag__ Z);
__imag__ Res = coshf (__real__ Z) * sinf (__imag__ Z);
return Res;
}