Manpage of SINH

Google
Web www.fiveanddime.net

SINH

Section: NEWLIB (3)
Updated: 2005 Feb 23
Index Return to Main Contents
 

NAME

1.27 `sinh', `sinhf'--hyperbolic sine

 

SYNOPSIS


     #include <math.h>
     double sinh(double X);
     float  sinhf(float X);  

DESCRIPTION

`sinh' computes the hyperbolic sine of the argument X. Angles are specified in radians. `sinh'(X) is defined as
      (exp(X) - exp(-X))/2


   `sinhf' is identical, save that it takes and returns `float' values.

 

RETURNS

The hyperbolic sine of X is returned.


   When the correct result is too large to be representable (an overflow), `sinh' returns `HUGE_VAL' with the appropriate sign, and sets the global value `errno' to `ERANGE'.


   You can modify error handling for these functions with `matherr'.

 

PORTABILITY

`sinh' is ANSI C. `sinhf' is an extension.

 

SEE ALSO

sinh is part of the libm library. The full documentation for libm is maintained as a Texinfo manual. If info and libm are properly installed at your site, the command
info libm

will give you access to the complete manual.


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURNS
PORTABILITY
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 21:25:31 GMT, May 16, 2005



www.fiveanddime.net








Google
Web www.fiveanddime.net