C / math.h / tanh
acos, asin, atan, atan2, ceil, cos, cosh, exp, fabs, floor, fmod, frexp, ldexp, log, log10, modf, pow, sin, sinh, sqrt, tan, » tanh,
Funcion: tanh()
Sintaxis:
Descripcion: Calcula la tangente hiperbólica de x.
Ejemplo:
Sintaxis:
double tanh(double x);
Descripcion: Calcula la tangente hiperbólica de x.
Ejemplo:
#include <stdio.h> #include <math.h> int main() { double x = 3.0; printf( "tanh( %f ) = %f\n", x, tanh(x) ); return 0; }