sinh

Computes the hyperbolic sine of the specified argument.

Library:LibC
Classification:ANSI
Service:Math

Syntax

  #include <math.h> 
   
  double sinh (
     double   x);
  

Parameters

x

(IN) Specifies the argument whose hyperbolic sine is to be computed.

Return Values

If successful, returns the hyperbolic sine value. When the argument is outside the permissible range, errno is set and matherr is called. Unless the function is replaced, matherr prints a diagnostic message using the stderr stream.

Remarks

A range error occurs if the magnitude of x is too large.

See Also