|
||
double cosh( double x )
double x; /* a double value */
|
|
|
Synopsis |
#include "math.h"
The cosh function returns the hyperbolic cosine of x: (ex + e-x )/ 2.
|
|
Parameters |
x may be any value.
|
|
Return Value |
cosh returns a value greater than or equal to 1. If the magnitude of x is so large, such that cosh(x) cannot be represented, then the system error variable errno is set to ERANGE , and cosh returns HUGE_VAL.
|
|
See Also |
|
|
|
|