@skybloxsystems/ticket-bot
Version:
45 lines (28 loc) • 988 B
Markdown
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
Calculate the 2-base of a value. This is the same as calculating `log(x, 2)`.
For matrices, the function is evaluated element wise.
```js
math.log2(x)
```
Parameter | Type | Description
--------- | ---- | -----------
`x` | number &
Type | Description
---- | -----------
number &
```js
math.log2(0.03125) // returns -5
math.log2(16) // returns 4
math.log2(16) / math.log2(2) // returns 4
math.pow(2, 4) // returns 16
```
[](exp.md),
[](log.md),
[](log1p.md),
[](log10.md)