blob: 769b586a7ff76d92c159ae01e9bf3d0cb0c09e24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# define TGSOURCE "complex/casin.c"
#include "_tgmath.h"
#include <complex.h>
TYPE complex TGFN(casin)(TYPE complex z)
{
return TGCMPLX(0.0, -TGFN(casinh)(I * z));
}
/*d
The casin functions compute the complex arc sine of z, with branch cuts outside the
interval [−1, +1] along the real axis.
d*/
/*r
The casin functions return the complex arc sine value, in the range of a strip
mathematically unbounded along the imaginary axis and in the interval [− π /2, + π /2]
along the real axis.
r*/
/*
STDC(199901)
LINK(m)
*/
|