tanh

Returns a double value that is the hyperbolic tangent of its double argument.

Format

#include  <math.h>

double tanh  (double x);

Argument

x
A real number.

Return Values
The hyperbolic tangent of the argument. 
HUGE_VAL  Indicates that the argument is too large; errno is set to ERANGE. 


Previous Page | Next Page | Table of Contents | Index