Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/numeric/math/tanh"

From cppreference.com
< cpp‎ | numeric‎ | math
m (Update links.)
m (Use since= and until= params of {{dcl}} template.)
Line 12: Line 12:
 
long double tanh( long double arg );
 
long double tanh( long double arg );
 
}}
 
}}
{{dcl | notes={{mark since c++11}} |
+
{{dcl | since=c++11 |
 
double      tanh( Integral arg );
 
double      tanh( Integral arg );
 
}}
 
}}

Revision as of 15:45, 1 July 2013

 
 
 
 
Defined in header <cmath>
float       tanh( float arg );
double      tanh( double arg );
long double tanh( long double arg );
double      tanh( Integral arg );
(since C++11)

Computes hyperbolic tangent of arg

Parameters

arg - floating point value

Return value

hyperbolic tangent of arg

See also

(C++11)(C++11)
computes hyperbolic sine (sinh(x))
(function) [edit]
(C++11)(C++11)
computes hyperbolic cosine (cosh(x))
(function) [edit]
(C++11)(C++11)(C++11)
computes the inverse hyperbolic tangent (artanh(x))
(function) [edit]
computes hyperbolic tangent of a complex number (tanh(z))
(function template) [edit]
applies the function std::tanh to each element of valarray
(function template) [edit]