blob: 071663eb4e15be2b7b8cab1b39cf0d3ce79df50b [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001
2/* @(#)e_cosh.c 1.3 95/01/18 */
3/*
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 *
7 * Developed at SunSoft, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
10 * is preserved.
11 * ====================================================
12 */
13
Elliott Hughesa0ee0782013-01-30 19:06:37 -080014#include <sys/cdefs.h>
15__FBSDID("$FreeBSD$");
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080016
Elliott Hughes4088e3a2023-08-03 13:33:56 -070017/* cosh(x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080018 * Method :
19 * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
20 * 1. Replace x by |x| (cosh(x) = cosh(-x)).
21 * 2.
22 * [ exp(x) - 1 ]^2
23 * 0 <= x <= ln2/2 : cosh(x) := 1 + -------------------
24 * 2*exp(x)
25 *
26 * exp(x) + 1/exp(x)
27 * ln2/2 <= x <= 22 : cosh(x) := -------------------
28 * 2
29 * 22 <= x <= lnovft : cosh(x) := exp(x)/2
30 * lnovft <= x <= ln2ovft: cosh(x) := exp(x/2)/2 * exp(x/2)
31 * ln2ovft < x : cosh(x) := huge*huge (overflow)
32 *
33 * Special cases:
34 * cosh(x) is |x| if x is +INF, -INF, or NaN.
35 * only cosh(0)=1 is exact for finite x.
36 */
37
Elliott Hughes460ad742014-09-12 14:00:02 -070038#include <float.h>
39
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080040#include "math.h"
41#include "math_private.h"
42
43static const double one = 1.0, half=0.5, huge = 1.0e300;
44
45double
Elliott Hughes4088e3a2023-08-03 13:33:56 -070046cosh(double x)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080047{
48 double t,w;
49 int32_t ix;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080050
51 /* High word of |x|. */
52 GET_HIGH_WORD(ix,x);
53 ix &= 0x7fffffff;
54
55 /* x is INF or NaN */
56 if(ix>=0x7ff00000) return x*x;
57
58 /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
59 if(ix<0x3fd62e43) {
60 t = expm1(fabs(x));
61 w = one+t;
62 if (ix<0x3c800000) return w; /* cosh(tiny) = 1 */
63 return one+(t*t)/(w+w);
64 }
65
66 /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
67 if (ix < 0x40360000) {
Elliott Hughes4088e3a2023-08-03 13:33:56 -070068 t = exp(fabs(x));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080069 return half*t+half/t;
70 }
71
72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
Elliott Hughes4088e3a2023-08-03 13:33:56 -070073 if (ix < 0x40862E42) return half*exp(fabs(x));
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080074
75 /* |x| in [log(maxdouble), overflowthresold] */
Elliott Hughesa0ee0782013-01-30 19:06:37 -080076 if (ix<=0x408633CE)
77 return __ldexp_exp(fabs(x), -1);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080078
79 /* |x| > overflowthresold, cosh(x) overflow */
80 return huge*huge;
81}
Elliott Hughes460ad742014-09-12 14:00:02 -070082
83#if (LDBL_MANT_DIG == 53)
84__weak_reference(cosh, coshl);
85#endif