1catan(3M) Mathematical Library Functions catan(3M)
2
3
4
6 catan, catanf, catanl - complex arc tangent functions
7
9 c99 [ flag... ] file... -lm [ library... ]
10 #include <complex.h>
11
12 double complex catan(double complex z);
13
14
15 float complex catanf(float complex z);
16
17
18 long double complex catanl(long double complex z);
19
20
22 These functions compute the complex arc tangent of z, with branch cuts
23 outside the interval [ −i, +++++pipii ] along the imaginary axis.
24
26 These functions return the complex arc tangent value, in the range of a
27 strip mathematically unbounded along the imaginary axis and in the
28 interval [ −pi/2, +pi/2 ] along the real axis.
29
31 No errors are defined.
32
34 See attributes(5) for descriptions of the following attributes:
35
36
37
38
39 ┌─────────────────────────────┬─────────────────────────────┐
40 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
41 ├─────────────────────────────┼─────────────────────────────┤
42 │Interface Stability │Standard │
43 ├─────────────────────────────┼─────────────────────────────┤
44 │MT-Level │MT-Safe │
45 └─────────────────────────────┴─────────────────────────────┘
46
48 complex.h(3HEAD), ctan(3M), attributes(5), standards(5)
49
50
51
52SunOS 5.11 12 Jul 2006 catan(3M)