The functions in this section are related to the exponential functions; see section Exponentiation and Logarithms.
sinh
function returns the hyperbolic sine of x, defined
mathematically as exp (x) - exp (-x) / 2
. The
function fails, and sets errno
to ERANGE
, if the value of
x is too large; that is, if overflow occurs.
cosh
function returns the hyperbolic cosine of x,
defined mathematically as exp (x) + exp (-x) / 2
.
The function fails, and sets errno
to ERANGE
, if the value
of x is too large; that is, if overflow occurs.
sinh (x) / cosh (x)
.
1
, acosh
returns HUGE_VAL
.
1
, atanh
returns
HUGE_VAL
.
Go to the first, previous, next, last section, table of contents.