OpenBSD manual page server

Manual Page Search Parameters

CATANH(3) Library Functions Manual CATANH(3)

catanh, catanhf, catanhlcomplex inverse hyperbolic tangent

#include <complex.h>

double complex
catanh(double complex z);

float complex
catanhf(float complex z);

long double complex
catanhl(long double complex z);

The (), () and () functions compute the complex inverse hyperbolic tangent of z.

For all complex floating-point numbers z,

catanh(z) = -i catan(iz).

The catanh(), catanhf() and catanhl() functions return the complex inverse hyperbolic tangent of z with imaginary part in the interval [-Pi/2, Pi/2], and unbounded real part.

cacosh(3), casinh(3)

The catanh(), catanhf() and catanhl() functions conform to ISO/IEC 9899:1999 (“ISO C99”).

June 5, 2013 OpenBSD-current