Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 1 | // 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 Pike | 4331293 | 2008-06-27 17:06:23 -0700 | [diff] [blame] | 5 | package math |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 6 | |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 7 | /* |
Rob Pike | 00e2cda | 2010-01-12 07:38:31 +1100 | [diff] [blame] | 8 | 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 Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 18 | |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 19 | // Sinh returns the hyperbolic sine of x. |
Charles L. Dorian | abc7df9 | 2011-12-05 14:01:24 -0500 | [diff] [blame] | 20 | // |
| 21 | // Special cases are: |
| 22 | // Sinh(±0) = ±0 |
| 23 | // Sinh(±Inf) = ±Inf |
| 24 | // Sinh(NaN) = NaN |
Bill O'Farrell | b6a1568 | 2016-10-30 00:11:37 -0400 | [diff] [blame] | 25 | func Sinh(x float64) float64 |
| 26 | |
| 27 | func sinh(x float64) float64 { |
Russ Cox | 2c8d9a5 | 2009-01-15 19:11:32 -0800 | [diff] [blame] | 28 | // The coefficients are #2029 from Hart & Cheney. (20.36D) |
Russ Cox | 2c5ec1e | 2009-10-06 19:40:35 -0700 | [diff] [blame] | 29 | const ( |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 30 | 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 Cox | 2c8d9a5 | 2009-01-15 19:11:32 -0800 | [diff] [blame] | 37 | ) |
| 38 | |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 39 | sign := false |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 40 | if x < 0 { |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 41 | x = -x |
| 42 | sign = true |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 43 | } |
Ken Thompson | 77e20e8 | 2008-07-08 20:48:41 -0700 | [diff] [blame] | 44 | |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 45 | var temp float64 |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 46 | switch true { |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 47 | case x > 21: |
Robert Griesemer | 3bb0032 | 2009-11-09 21:23:52 -0800 | [diff] [blame] | 48 | temp = Exp(x) / 2 |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 49 | |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 50 | case x > 0.5: |
Robert Griesemer | 3bb0032 | 2009-11-09 21:23:52 -0800 | [diff] [blame] | 51 | temp = (Exp(x) - Exp(-x)) / 2 |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 52 | |
| 53 | default: |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 54 | sq := x * x |
| 55 | temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x |
| 56 | temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0) |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | if sign { |
Robert Griesemer | 40621d5 | 2009-11-09 12:07:39 -0800 | [diff] [blame] | 60 | temp = -temp |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 61 | } |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 62 | return temp |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 65 | // Cosh returns the hyperbolic cosine of x. |
Charles L. Dorian | abc7df9 | 2011-12-05 14:01:24 -0500 | [diff] [blame] | 66 | // |
| 67 | // Special cases are: |
| 68 | // Cosh(±0) = 1 |
| 69 | // Cosh(±Inf) = +Inf |
| 70 | // Cosh(NaN) = NaN |
Bill O'Farrell | b6a1568 | 2016-10-30 00:11:37 -0400 | [diff] [blame] | 71 | func Cosh(x float64) float64 |
| 72 | |
| 73 | func cosh(x float64) float64 { |
Thanabodee Charoenpiriyakij | 1124fa3 | 2017-12-17 16:11:14 +0700 | [diff] [blame^] | 74 | x = Abs(x) |
Russ Cox | dfc3910 | 2009-03-05 13:31:01 -0800 | [diff] [blame] | 75 | if x > 21 { |
Robert Griesemer | 3bb0032 | 2009-11-09 21:23:52 -0800 | [diff] [blame] | 76 | return Exp(x) / 2 |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 77 | } |
Robert Griesemer | a3d1045 | 2009-12-15 15:35:38 -0800 | [diff] [blame] | 78 | return (Exp(x) + Exp(-x)) / 2 |
Ken Thompson | 2181098 | 2008-03-28 13:56:47 -0700 | [diff] [blame] | 79 | } |