1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
7 .TH CASINH 3 2021-03-22 "" "Linux Programmer's Manual"
9 casinh, casinhf, casinhl \- complex arc sine hyperbolic
12 .B #include <complex.h>
14 .BI "double complex casinh(double complex " z );
15 .BI "float complex casinhf(float complex " z );
16 .BI "long double complex casinhl(long double complex " z );
21 These functions calculate the complex arc hyperbolic sine of
23 If \fIy\ =\ casinh(z)\fP, then \fIz\ =\ csinh(y)\fP.
26 is chosen in the interval [\-pi/2,pi/2].
31 casinh(z) = clog(z + csqrt(z * z + 1))
34 These functions first appeared in glibc in version 2.1.
36 For an explanation of the terms used in this section, see
44 Interface Attribute Value
49 T} Thread safety MT-Safe
55 C99, POSIX.1-2001, POSIX.1-2008.