---
layout: default
---
Function bitNot #
Bitwise NOT value, `~x`.
For matrices, the function is evaluated element wise.
For units, the function is evaluated on the best prefix base.
Syntax #
```js
math.bitNot(x)
```
Parameters #
Parameter | Type | Description
--------- | ---- | -----------
`x` | number | BigNumber | bigint | Array | Matrix | Value to not
Returns #
Type | Description
---- | -----------
number | BigNumber | bigint | Array | Matrix | NOT of `x`
Throws #
Type | Description
---- | -----------
Examples #
```js
math.bitNot(1) // returns number -2
math.bitNot([2, -3, 4]) // returns Array [-3, 2, -5]
```
See also #
[bitAnd](bitAnd.html),
[bitOr](bitOr.html),
[bitXor](bitXor.html),
[leftShift](leftShift.html),
[rightArithShift](rightArithShift.html),
[rightLogShift](rightLogShift.html)