std::tan

From cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Exponential functions
(C++11)
(C++11)
(C++11)
(C++11)
Power functions
(C++11)
(C++11)
Trigonometric and hyperbolic functions
(C++11)
(C++11)
(C++11)
Error and gamma functions
(C++11)
(C++11)
(C++11)
(C++11)
Nearest integer floating point operations
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Floating point manipulation functions
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classification/Comparison
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Macro constants
(C++11)(C++11)(C++11)(C++11)(C++11)
 
Defined in header <cmath>
float       tan( float arg );
double      tan( double arg );
long double tan( long double arg );
double      tan( Integral arg );
(since C++11)

Computes tangent of arg.

[edit] Parameters

arg - value representing angle in radians, of a floating-point or Integral type

[edit] Return value

Tangent of arg.

Domain error occurs if arg is infinite. NAN is returned in that case.

[edit] See also

computes sine (sin(x))
(function)
computes cosine (cos(x))
(function)
computes arc tangent (arctan(x))
(function)
computes tangent of a complex number (tan(z))
(function template)
applies the function std::tan to each element of valarray
(function template)
C documentation for tan