|
double tan( double x )
double x; /* a double value */
|
|
|
|
|
Synopsis
|
#include "math.h"
The tan function calculates the tangent of x , for x in radians.
|
|
Parameters
|
x may be any double value.
|
|
Return Value
|
tan returns the tangent of x .
|
|
See Also
|
sin , cos , atan , atan2, tanh
|
|
|
|
|