xyosc/vendor/github.com/chewxy/math32/log10.go

8 lines
105 B
Go
Raw Permalink Normal View History

2024-12-21 17:38:26 +01:00
package math32
import "math"
func Log10(x float32) float32 {
return float32(math.Log10(float64(x)))
}