VMS Help
CRTL, cosh
*Conan The Librarian
|
Returns the hyperbolic cosine of its radian argument.
Format
#include <math.h>
double cosh (double x);
float coshf (float x); (Integrity servers, Alpha)
long double coshl (long double x); (Integrity servers, Alpha)
x
A radian expressed as a real number.
The cosh functions return the hyperbolic cosine of x and are
defined as (e**x + e**(-x))/2.
x The hyperbolic cosine of the argument.
HUGE_VAL Indicates that the argument is too large;
errno is set to ERANGE.