1CATAN(3)                     complex math routines                    CATAN(3)
2
3
4

NAME

6       catan, catanf, catanl - complex arc tangents
7

SYNOPSIS

9       #include <complex.h>
10
11       double complex catan(double complex z);
12       float complex catanf(float complex z);
13       long double complex catanl(long double complex z);
14
15       Link with -lm.
16

DESCRIPTION

18       The  catan()  function calculates the complex atan().  If y = catan(z),
19       then z = ctan(y).  The real  part  of  y  is  chosen  in  the  interval
20       [-pi/2,pi/2].
21
22       One has catan(z) = 1/2i clog((1+iz)/(1-iz)).
23

CONFORMING TO

25       C99
26

SEE ALSO

28       ccos(3), clog(3), complex(7)
29
30
31
32                                  2002-07-28                          CATAN(3)
Impressum