mount_setattr.2: ffix
[man-pages.git] / man3 / casin.3
blob4d1995c8faf1b3f9684295d68ad9be00f24c2040
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 CASIN 3 2021-03-22 "" "Linux Programmer's Manual"
8 .SH NAME
9 casin, casinf, casinl \- complex arc sine
10 .SH SYNOPSIS
11 .nf
12 .B #include <complex.h>
13 .PP
14 .BI "double complex casin(double complex " z );
15 .BI "float complex casinf(float complex " z );
16 .BI "long double complex casinl(long double complex " z );
17 .PP
18 Link with \fI\-lm\fP.
19 .fi
20 .SH DESCRIPTION
21 These functions calculate the complex arc sine of
22 .IR z .
23 If \fIy\ =\ casin(z)\fP, then \fIz\ =\ csin(y)\fP.
24 The real 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     casin(z) = \-i clog(iz + csqrt(1 \- z * z))
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 casin (),
47 .BR casinf (),
48 .BR casinl ()
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 clog (3),
58 .BR csin (3),
59 .BR complex (7)