blob: 30bbc0661ec949a5dbf7d97ae7e48457bc5ada5d [file] [log] [blame]
Ken Thompson21810982008-03-28 13:56:47 -07001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Rob Pike43312932008-06-27 17:06:23 -07005package math
Ken Thompson21810982008-03-28 13:56:47 -07006
Ken Thompson21810982008-03-28 13:56:47 -07007/*
Rob Pike00e2cda2010-01-12 07:38:31 +11008 Floating-point hyperbolic sine and cosine.
9
10 The exponential func is called for arguments
11 greater in magnitude than 0.5.
12
13 A series is used for arguments smaller in magnitude than 0.5.
14
15 Cosh(x) is computed from the exponential func for
16 all arguments.
17*/
Ken Thompson21810982008-03-28 13:56:47 -070018
Russ Coxdfc39102009-03-05 13:31:01 -080019// Sinh returns the hyperbolic sine of x.
Charles L. Dorianabc7df92011-12-05 14:01:24 -050020//
21// Special cases are:
22// Sinh(±0) = ±0
23// Sinh(±Inf) = ±Inf
24// Sinh(NaN) = NaN
Bill O'Farrellb6a15682016-10-30 00:11:37 -040025func Sinh(x float64) float64
26
27func sinh(x float64) float64 {
Russ Cox2c8d9a52009-01-15 19:11:32 -080028 // The coefficients are #2029 from Hart & Cheney. (20.36D)
Russ Cox2c5ec1e2009-10-06 19:40:35 -070029 const (
Robert Griesemera3d10452009-12-15 15:35:38 -080030 P0 = -0.6307673640497716991184787251e+6
31 P1 = -0.8991272022039509355398013511e+5
32 P2 = -0.2894211355989563807284660366e+4
33 P3 = -0.2630563213397497062819489e+2
34 Q0 = -0.6307673640497716991212077277e+6
35 Q1 = 0.1521517378790019070696485176e+5
36 Q2 = -0.173678953558233699533450911e+3
Russ Cox2c8d9a52009-01-15 19:11:32 -080037 )
38
Robert Griesemera3d10452009-12-15 15:35:38 -080039 sign := false
Russ Coxdfc39102009-03-05 13:31:01 -080040 if x < 0 {
Robert Griesemera3d10452009-12-15 15:35:38 -080041 x = -x
42 sign = true
Ken Thompson21810982008-03-28 13:56:47 -070043 }
Ken Thompson77e20e82008-07-08 20:48:41 -070044
Robert Griesemera3d10452009-12-15 15:35:38 -080045 var temp float64
Ken Thompson21810982008-03-28 13:56:47 -070046 switch true {
Russ Coxdfc39102009-03-05 13:31:01 -080047 case x > 21:
Robert Griesemer3bb00322009-11-09 21:23:52 -080048 temp = Exp(x) / 2
Ken Thompson21810982008-03-28 13:56:47 -070049
Russ Coxdfc39102009-03-05 13:31:01 -080050 case x > 0.5:
Robert Griesemer3bb00322009-11-09 21:23:52 -080051 temp = (Exp(x) - Exp(-x)) / 2
Ken Thompson21810982008-03-28 13:56:47 -070052
53 default:
Robert Griesemera3d10452009-12-15 15:35:38 -080054 sq := x * x
55 temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x
56 temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0)
Ken Thompson21810982008-03-28 13:56:47 -070057 }
58
59 if sign {
Robert Griesemer40621d52009-11-09 12:07:39 -080060 temp = -temp
Ken Thompson21810982008-03-28 13:56:47 -070061 }
Robert Griesemera3d10452009-12-15 15:35:38 -080062 return temp
Ken Thompson21810982008-03-28 13:56:47 -070063}
64
Russ Coxdfc39102009-03-05 13:31:01 -080065// Cosh returns the hyperbolic cosine of x.
Charles L. Dorianabc7df92011-12-05 14:01:24 -050066//
67// Special cases are:
68// Cosh(±0) = 1
69// Cosh(±Inf) = +Inf
70// Cosh(NaN) = NaN
Bill O'Farrellb6a15682016-10-30 00:11:37 -040071func Cosh(x float64) float64
72
73func cosh(x float64) float64 {
Thanabodee Charoenpiriyakij1124fa32017-12-17 16:11:14 +070074 x = Abs(x)
Russ Coxdfc39102009-03-05 13:31:01 -080075 if x > 21 {
Robert Griesemer3bb00322009-11-09 21:23:52 -080076 return Exp(x) / 2
Ken Thompson21810982008-03-28 13:56:47 -070077 }
Robert Griesemera3d10452009-12-15 15:35:38 -080078 return (Exp(x) + Exp(-x)) / 2
Ken Thompson21810982008-03-28 13:56:47 -070079}