5.4. Hyperbolic Functions

5.4.1. The cosh function

Synopsis
#include <math.h>

double cosh (double x );

Description

The cosh function computes the hyperbolic cosine of x. A range error occurs if the magnitude of x is too large.

Returns

The cosh function returns the hyperbolic cosine value.

5.4.2. The sinh function

Synopsis
#include <math.h>

double sinh (double x );

Description

The sinh function computes the hyperbolic sine of x. A range error occurs if the magnitude of x is too large.

Returns

The sinh function returns the hyperbolic sine value.

Implementation Notes

None.

5.4.3. The tanh function

Synopsis
#include <math.h>

double tanh (double x );

Description

The tanh function computes the hyperbolic tangent of x.

Returns

The tanh function returns the hyperbolic tangent value.

Implementation Notes

None.