Namespaces
Variants
Views
Actions

std::tanh

From cppreference.com
< cpp | numeric | math
Revision as of 16:50, 4 May 2012 by P12bot (Talk | contribs)

Template:cpp/numeric/math/sidebar

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

computes hyperbolic sine (sh(x))
(function) [edit]
computes hyperbolic cosine (ch(x))
(function) [edit]
(C++11)
hyperbolic arc tangent
(function) [edit]
computes hyperbolic tangent of a complex number
(function template) [edit]
applies the function std::tanh to each element of valarray
(function template) [edit]