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

12 lines
165 B
Go
Raw Normal View History

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