log1p.go 105 B

1234567
  1. package math32
  2. import "math"
  3. func Log1p(x float32) float32 {
  4. return float32(math.Log1p(float64(x)))
  5. }