log10.go 105 B

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