ioctl_tty.2: Update DTR example
[man-pages.git] / man3 / casinh.3
blob738042f4a56fba55483935ad19a8504533bd91c9
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CASINH 3 2021-03-22 "" "Linux Programmer's Manual"
8 .SH NAME
9 casinh, casinhf, casinhl \- complex arc sine hyperbolic
10 .SH SYNOPSIS
11 .nf
12 .B #include <complex.h>
13 .PP
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 );
17 .PP
18 Link with \fI\-lm\fP.
19 .fi
20 .SH DESCRIPTION
21 These functions calculate the complex arc hyperbolic sine of
22 .IR z .
23 If \fIy\ =\ casinh(z)\fP, then \fIz\ =\ csinh(y)\fP.
24 The imaginary part of
25 .I y
26 is chosen in the interval [\-pi/2,pi/2].
27 .PP
28 One has:
29 .PP
30 .nf
31     casinh(z) = clog(z + csqrt(z * z + 1))
32 .fi
33 .SH VERSIONS
34 These functions first appeared in glibc in version 2.1.
35 .SH ATTRIBUTES
36 For an explanation of the terms used in this section, see
37 .BR attributes (7).
38 .ad l
39 .nh
40 .TS
41 allbox;
42 lbx lb lb
43 l l l.
44 Interface       Attribute       Value
46 .BR casinh (),
47 .BR casinhf (),
48 .BR casinhl ()
49 T}      Thread safety   MT-Safe
50 .TE
51 .hy
52 .ad
53 .sp 1
54 .SH CONFORMING TO
55 C99, POSIX.1-2001, POSIX.1-2008.
56 .SH SEE ALSO
57 .BR asinh (3),
58 .BR cabs (3),
59 .BR cimag (3),
60 .BR csinh (3),
61 .BR complex (7)