func math.Log1p
5 uses
math (current package)
acosh.go#L58: return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1
asinh.go#L65: temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28
atanh.go#L71: temp = 0.5 * Log1p(temp+temp*x/(1-x))
atanh.go#L73: temp = 0.5 * Log1p((x+x)/(1-x))
log1p.go#L95: func Log1p(x float64) float64
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |