1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
7 .TH CASIN 3 2021-03-22 "" "Linux Programmer's Manual"
9 casin, casinf, casinl \- complex arc sine
12 .B #include <complex.h>
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 );
21 These functions calculate the complex arc sine of
23 If \fIy\ =\ casin(z)\fP, then \fIz\ =\ csin(y)\fP.
26 is chosen in the interval [\-pi/2,pi/2].
31 casin(z) = \-i clog(iz + csqrt(1 \- z * z))
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.