1CTAN(3) complex math routines CTAN(3)
23
4
NAME
6ctan, ctanf, ctanl - complex tangent function
7
SYNOPSIS
9#include <complex.h>
1011
double complex ctan(double complex z);
12float complex ctanf(float complex z);
13long double complex ctanl(long double complex z);
1415
Link with -lm.
16
DESCRIPTION
18The complex tangent function ctan(z) is defined mathematically as
19csin(z) / ccos(z).
20
CONFORMING TO
22C99
23
SEE ALSO
25cabs(3), ccos(3), csin(3), complex(7)
2627
28
29
2002-07-28 CTAN(3)