Log10
7/14/25Less than 1 minute
Mathf.Log10(number f)
Returns the base 10 logarithm of a specified number.
Parameters:
| Name | Type | Description |
|---|---|---|
| f | number | Value |
Returns:
| type | Description |
|---|---|
| number | the base 10 logarithm of a specified number. |
Usage
---@type number
local f;
local val0 = Mathf:Log10(f)
