Sintaxe:
#include <cmath> double tanh( double arg );
A função tanh() devolve a tangente hiperbólica de arg.
O C++ também fornece as seguintes formas sobre-carregadas (overload):
#include <cmath> float tanh( float arg ); // igual a tanhf() em C99 long double tanh( long double arg ); // igual a tanhl() em C99
Tópicos Relacionados: acos, asin, atan, atan2, cos, cosh, sin, sinh, tan