sinh

Computes the hyperbolic sine of the specified argument

Local Servers:nonblocking
Remote Servers:N/A
Classification:ANSI
Service:Mathematical Computation

Syntax

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

Parameters

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

Return Values

The sinh function 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

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

See Also

cosh, matherr, tanh

Example

  #include <math.h>  
  #include <stdio.h>  
   
  main ()  
  {  
     printf ("%f\n", sinh (.5) );  
  }
  

produces the following:

  0.521095