545 B
545 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.logb() function | The math.logb() function returns the binary exponent of `x`. |
|
301 |
The math.logb()
function returns the binary exponent of x
.
Output data type: Float
import "math"
math.logb(x: 3.14)
// Returns 1.0
Parameters
x
The value used in the operation.
Data type: Float
Special cases
math.logb(x: ±Inf) // Returns +Inf
math.logb(x: 0) // Returns -Inf
math.logb(x: NaN) // Returns NaN