OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Expm1
(Results
1 - 2
of
2
) sorted by null
/prebuilts/go/darwin-x86/src/math/
expm1.go
21
//
expm1
(x)
33
// 2. Approximating
expm1
(r) by a special rational function on
59
//
expm1
(r) = exp(r)-1 is then computed by the following
63
//
expm1
(r) = r + --- + --- * [--------------------]
67
//
expm1
(r+c) =
expm1
(r) + c +
expm1
(r)*c
68
// ~
expm1
(r) + c + r*c
70
//
expm1
(r+c). Now rearrange the term to avoid optimization
74
//
expm1
(r+c)~r - ({r*(--- * [--------------------]-c)-c} - ---
126
func
expm1
(x float64) float64 {
func
[
all
...]
/prebuilts/go/linux-x86/src/math/
expm1.go
21
//
expm1
(x)
33
// 2. Approximating
expm1
(r) by a special rational function on
59
//
expm1
(r) = exp(r)-1 is then computed by the following
63
//
expm1
(r) = r + --- + --- * [--------------------]
67
//
expm1
(r+c) =
expm1
(r) + c +
expm1
(r)*c
68
// ~
expm1
(r) + c + r*c
70
//
expm1
(r+c). Now rearrange the term to avoid optimization
74
//
expm1
(r+c)~r - ({r*(--- * [--------------------]-c)-c} - ---
126
func
expm1
(x float64) float64 {
func
[
all
...]
Completed in 67 milliseconds