1CASIN(3) Linux Programmer's Manual CASIN(3)
2
3
4
6 casin, casinf, casinl - complex arc sine
7
9 #include <complex.h>
10
11 double complex casin(double complex z);
12 float complex casinf(float complex z);
13 long double complex casinl(long double complex z);
14
15 Link with -lm.
16
18 The casin() function calculates the complex arc sine of z. If
19 y = casin(z), then z = csin(y). The real part of y is chosen in the
20 interval [-pi/2,pi/2].
21
22 One has:
23
24 casin(z) = -i clog(iz + csqrt(1 - z * z))
25
27 These functions first appeared in glibc in version 2.1.
28
30 C99.
31
33 ccos(3), clog(3), complex(7)
34
36 This page is part of release 3.25 of the Linux man-pages project. A
37 description of the project, and information about reporting bugs, can
38 be found at http://www.kernel.org/doc/man-pages/.
39
40
41
42 2008-08-11 CASIN(3)