sinh() and sinhf()

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

  
  float sinhf(float x);

  
Description

sinh() computes the hyperbolic sine of x.

Return

The hyperbolic sine sinh(x) of x. If it fails because the value is too large, it returns infinity with the same sign as x and sets errno to ERANGE.

See also

asin() and asinf(),

cosh() and coshf(),

sin() and sinf(), and

tan() and tanf()