aboutsummaryrefslogtreecommitdiff
path: root/src/base/math/sinh.c
blob: ce036aedc0760b2b4258d2beecf0dc8578a03064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <u.h>
#include <base.h>

/*
 * sinh(arg) returns the hyperbolic sine of its floating-
 * point argument.
 *
 * The exponential function is called for arguments
 * greater in magnitude than 0.5.
 *
 * A series is used for arguments smaller in magnitude than 0.5.
 * The coefficients are #2029 from Hart & Cheney. (20.36D)
 *
 * cosh(arg) is computed from the exponential function for
 * all arguments.
 */

static	double	p0  = -0.6307673640497716991184787251e+6;
static	double	p1  = -0.8991272022039509355398013511e+5;
static	double	p2  = -0.2894211355989563807284660366e+4;
static	double	p3  = -0.2630563213397497062819489e+2;
static	double	q0  = -0.6307673640497716991212077277e+6;
static	double	q1   = 0.1521517378790019070696485176e+5;
static	double	q2  = -0.173678953558233699533450911e+3;

double
math·sinh(double arg)
{
	double temp, argsq;
	int sign;

	sign = 0;
	if(arg < 0) {
		arg = -arg;
		sign++;
	}
	if(arg > 21) {
		temp = math·exp(arg)/2;
		goto out;
	}
	if(arg > 0.5) {
		temp = (math·exp(arg) - math·exp(-arg))/2;
		goto out;
	}
	argsq = arg*arg;
	temp = (((p3*argsq+p2)*argsq+p1)*argsq+p0)*arg;
	temp /= (((argsq+q2)*argsq+q1)*argsq+q0);
out:
	if(sign)
		temp = -temp;
	return temp;
}

double
math·cosh(double arg)
{
	if(arg < 0)
		arg = - arg;
	if(arg > 21)
		return math·exp(arg)/2;
	return (math·exp(arg) + math·exp(-arg))/2;
}