1COSH(3) Linux Programmer's Manual COSH(3)
2
3
4
6 cosh, coshf, coshl - hyperbolic cosine function
7
9 #include <math.h>
10
11 double cosh(double x);
12 float coshf(float x);
13 long double coshl(long double x);
14
15 Link with -lm.
16
17 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
18
19 coshf(), coshl(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 600
20 || _ISOC99_SOURCE; or cc -std=c99
21
23 The cosh() function returns the hyperbolic cosine of x, which is
24 defined mathematically as:
25
26 cosh(x) = (exp(x) + exp(-x)) / 2
27
29 On success, these functions return the hyperbolic cosine of x.
30
31 If x is a NaN, a NaN is returned.
32
33 If x is +0 or -0, 1 is returned.
34
35 If x is positive infinity or negative infinity, positive infinity is
36 returned.
37
38 If the result overflows, a range error occurs, and the functions return
39 +HUGE_VAL, +HUGE_VALF, or +HUGE_VALL, respectively.
40
42 See math_error(7) for information on how to determine whether an error
43 has occurred when calling these functions.
44
45 The following errors can occur:
46
47 Range error: result overflow
48 errno is set to ERANGE. An overflow floating-point exception
49 (FE_OVERFLOW) is raised.
50
52 C99, POSIX.1-2001. The variant returning double also conforms to SVr4,
53 4.3BSD.
54
56 In glibc version 2.3.4 and earlier, an overflow floating-point
57 (FE_OVERFLOW) exception is not raised when an overflow occurs.
58
60 acosh(3), asinh(3), atanh(3), ccos(3), sinh(3), tanh(3)
61
63 This page is part of release 3.22 of the Linux man-pages project. A
64 description of the project, and information about reporting bugs, can
65 be found at http://www.kernel.org/doc/man-pages/.
66
67
68
69 2008-08-10 COSH(3)