func math.Log1p
5 uses
math (current package)
acosh.go#L64: return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1
asinh.go#L71: temp = Log1p(x + x*x/(1+Sqrt(1+x*x))) // 2.0 > |x| > 2**-28
atanh.go#L77: temp = 0.5 * Log1p(temp+temp*x/(1-x))
atanh.go#L79: temp = 0.5 * Log1p((x+x)/(1-x))
log1p.go#L96: func Log1p(x float64) float64 {
|
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |