blob: 3d557a8a841f14dd4d8b6c4210c4656b6427a9b5 [file] [log] [blame]
/* catanhf.c */
/*
Contributed by Danny Smith
2004-12-24
*/
#include <math.h>
#include <complex.h>
/* catanh (z) = -I * catan (I * z) */
float complex catanhf (float complex Z)
{
float complex Tmp;
float complex Res;
__real__ Tmp = - __imag__ Z;
__imag__ Tmp = __real__ Z;
Tmp = catanf (Tmp);
__real__ Res = __imag__ Tmp;
__imag__ Res = - __real__ Tmp;
return Res;
}