1CASIN(3)                   Linux Programmer's Manual                  CASIN(3)
2
3
4

NAME

6       casin, casinf, casinl - complex arc sine
7

SYNOPSIS

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

DESCRIPTION

18       These  functions calculate the complex arc sine of z.  If y = casin(z),
19       then z = csin(y).  The real  part  of  y  is  chosen  in  the  interval
20       [-pi/2,pi/2].
21
22       One has:
23
24           casin(z) = -i clog(iz + csqrt(1 - z * z))
25

VERSIONS

27       These functions first appeared in glibc in version 2.1.
28

ATTRIBUTES

30       For   an   explanation   of   the  terms  used  in  this  section,  see
31       attributes(7).
32
33       ┌─────────────────────────────┬───────────────┬─────────┐
34Interface                    Attribute     Value   
35       ├─────────────────────────────┼───────────────┼─────────┤
36casin(), casinf(), casinl()  │ Thread safety │ MT-Safe │
37       └─────────────────────────────┴───────────────┴─────────┘

CONFORMING TO

39       C99, POSIX.1-2001, POSIX.1-2008.
40

SEE ALSO

42       clog(3), csin(3), complex(7)
43

COLOPHON

45       This page is part of release 5.02 of the Linux  man-pages  project.   A
46       description  of  the project, information about reporting bugs, and the
47       latest    version    of    this    page,    can     be     found     at
48       https://www.kernel.org/doc/man-pages/.
49
50
51
52                                  2015-04-19                          CASIN(3)
Impressum