std::tan

From cppreference.com
Jump to: navigation, search
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 - floating point value representing angle in radians

[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) [edit]
computes cosine (cos(x))
(function) [edit]
computes arc tangent (arctan(x))
(function) [edit]
computes tangent of a complex number (tan(z))
(function template) [edit]
applies the function std::tan to each element of valarray
(function template) [edit]

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages