1TAN(3) Linux Programmer's Manual TAN(3)
23
4
NAME
6tan, tanf, tanl - tangent function
7
SYNOPSIS
9#include <math.h>
1011
double tan(double x);
12float tanf(float x);
13long double tanl(long double x);
1415
Link with -lm.
16
DESCRIPTION
18The tan() function returns the tangent of x, where x is given in radi‐
19ans.
20
CONFORMING TO
22SVr4, 4.3BSD, C89. The float and long double variants are C99 require‐
23ments.
24
SEE ALSO
26acos(3), asin(3), atan(3), atan2(3), cos(3), ctan(3), sin(3)
2728
29
30
2002-07-27 TAN(3)