2008-03-28 13:56:47 -07:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2008-06-27 17:06:23 -07:00
|
|
|
package math
|
2008-03-28 13:56:47 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2009-03-05 13:31:01 -08:00
|
|
|
* Sinh(x) returns the hyperbolic sine of x
|
2008-07-08 20:48:41 -07:00
|
|
|
*
|
|
|
|
|
* The exponential func is called for arguments
|
|
|
|
|
* greater in magnitude than 0.5.
|
|
|
|
|
*
|
|
|
|
|
* A series is used for arguments smaller in magnitude than 0.5.
|
|
|
|
|
*
|
2009-03-05 13:31:01 -08:00
|
|
|
* Cosh(x) is computed from the exponential func for
|
2008-07-08 20:48:41 -07:00
|
|
|
* all arguments.
|
2008-03-28 13:56:47 -07:00
|
|
|
*/
|
|
|
|
|
|
2009-03-05 13:31:01 -08:00
|
|
|
// Sinh returns the hyperbolic sine of x.
|
|
|
|
|
func Sinh(x float64) float64 {
|
2009-01-15 19:11:32 -08:00
|
|
|
// The coefficients are #2029 from Hart & Cheney. (20.36D)
|
2009-10-06 19:40:35 -07:00
|
|
|
const (
|
2009-01-15 19:11:32 -08:00
|
|
|
P0 = -0.6307673640497716991184787251e+6;
|
|
|
|
|
P1 = -0.8991272022039509355398013511e+5;
|
|
|
|
|
P2 = -0.2894211355989563807284660366e+4;
|
|
|
|
|
P3 = -0.2630563213397497062819489e+2;
|
|
|
|
|
Q0 = -0.6307673640497716991212077277e+6;
|
2009-10-06 19:40:35 -07:00
|
|
|
Q1 = 0.1521517378790019070696485176e+5;
|
2009-01-15 19:11:32 -08:00
|
|
|
Q2 = -0.173678953558233699533450911e+3;
|
|
|
|
|
)
|
|
|
|
|
|
2009-03-05 13:31:01 -08:00
|
|
|
sign := false;
|
|
|
|
|
if x < 0 {
|
|
|
|
|
x = -x;
|
2008-03-28 13:56:47 -07:00
|
|
|
sign = true;
|
|
|
|
|
}
|
2008-07-08 20:48:41 -07:00
|
|
|
|
2008-11-19 16:14:31 -08:00
|
|
|
var temp float64;
|
2008-03-28 13:56:47 -07:00
|
|
|
switch true {
|
2009-03-05 13:31:01 -08:00
|
|
|
case x > 21:
|
2009-11-09 21:23:52 -08:00
|
|
|
temp = Exp(x) / 2
|
2008-03-28 13:56:47 -07:00
|
|
|
|
2009-03-05 13:31:01 -08:00
|
|
|
case x > 0.5:
|
2009-11-09 21:23:52 -08:00
|
|
|
temp = (Exp(x) - Exp(-x)) / 2
|
2008-03-28 13:56:47 -07:00
|
|
|
|
|
|
|
|
default:
|
2009-11-09 21:23:52 -08:00
|
|
|
sq := x * x;
|
|
|
|
|
temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x;
|
|
|
|
|
temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0);
|
2008-03-28 13:56:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if sign {
|
2009-11-09 12:07:39 -08:00
|
|
|
temp = -temp
|
2008-03-28 13:56:47 -07:00
|
|
|
}
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-05 13:31:01 -08:00
|
|
|
// Cosh returns the hyperbolic cosine of x.
|
|
|
|
|
func Cosh(x float64) float64 {
|
|
|
|
|
if x < 0 {
|
2009-11-09 12:07:39 -08:00
|
|
|
x = -x
|
2008-03-28 13:56:47 -07:00
|
|
|
}
|
2009-03-05 13:31:01 -08:00
|
|
|
if x > 21 {
|
2009-11-09 21:23:52 -08:00
|
|
|
return Exp(x) / 2
|
2008-03-28 13:56:47 -07:00
|
|
|
}
|
2009-11-09 21:23:52 -08:00
|
|
|
return (Exp(x) + Exp(-x)) / 2;
|
2008-03-28 13:56:47 -07:00
|
|
|
}
|