CASINH(3) Library Functions Manual CASINH(3)

casinhcomplex inverse hyperbolic sine function

double complex
casinh(double complex z);

long double complex
casinhl(long double complex z);

float complex
casinhf(float complex z);

(z) computes the inverse hyperbolic sine of the complex floating-point number z, with branch cuts outside the interval [-i, i] along the imaginary axis.

() returns values in a strip of the complex plane with imaginary part in the interval [-Pi/2, Pi/2].

For all complex floating point numbers z,

casinh(conj(z)) = conj(casinh(z)).
casinh(-z) = -casinh(z)

The symmetries of casinh() are used to abbreviate the specification of special values.

(0 + 0i) returns 0 + 0 i.

(x + inf i) returns inf + Pi/2 i, for finite positive-signed x.

(x + NaN i) returns NaN + NaN i, for finite x.

(inf + yi) returns inf + 0i, for finite positive-signed y.

(inf + inf i) returns inf + Pi/4 i.

(inf + NaN i) returns inf + NaN i.

(NaN + 0i) returns NaN + 0i.

(NaN + yi) returns NaN + NaN i, for finite y.

(NaN + inf i) returns inf + NaN i.

(NaN + NaN i) returns NaN + NaN i.

csinh(3) complex(3)

The casinh() function conforms to ISO/IEC 9899:2011.

December 11, 2006 BSD 4