OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Cosh
(Results
1 - 4
of
4
) sorted by null
/prebuilts/go/darwin-x86/src/math/
sinh.go
15
Cosh
(x) is computed from the exponential func for
63
//
Cosh
returns the hyperbolic cosine of x.
66
//
Cosh
(±0) = 1
67
//
Cosh
(±Inf) = +Inf
68
//
Cosh
(NaN) = NaN
69
func
Cosh
(x float64) float64 {
/prebuilts/go/linux-x86/src/math/
sinh.go
15
Cosh
(x) is computed from the exponential func for
63
//
Cosh
returns the hyperbolic cosine of x.
66
//
Cosh
(±0) = 1
67
//
Cosh
(±Inf) = +Inf
68
//
Cosh
(NaN) = NaN
69
func
Cosh
(x float64) float64 {
/prebuilts/go/darwin-x86/src/math/cmplx/
sin.go
40
// w = sin x
cosh
y + i cos x sinh y.
64
// = sinh x * cos y + i
cosh
x * sin y .
88
// w = cos x
cosh
y - i sin x sinh y.
108
// ccosh(z) =
cosh
x cos y + i sinh x sin y .
116
//
Cosh
returns the hyperbolic cosine of x.
117
func
Cosh
(x complex128) complex128 {
123
// calculate sinh and
cosh
126
return math.Sinh(x), math.
Cosh
(x)
/prebuilts/go/linux-x86/src/math/cmplx/
sin.go
40
// w = sin x
cosh
y + i cos x sinh y.
64
// = sinh x * cos y + i
cosh
x * sin y .
88
// w = cos x
cosh
y - i sin x sinh y.
108
// ccosh(z) =
cosh
x cos y + i sinh x sin y .
116
//
Cosh
returns the hyperbolic cosine of x.
117
func
Cosh
(x complex128) complex128 {
123
// calculate sinh and
cosh
126
return math.Sinh(x), math.
Cosh
(x)
Completed in 41 milliseconds