Member of the transforms class.
b = bitrevorder(a)
[b, c] = bitrevorder(a)
Permutes the input array into bit-reversed order.
| Name | Description |
| a | Specifies the input array. a is an array. If a is a 2D array, bitrevorder permutes a along the first non-singleton dimension of a. |
| Name | Description |
| b | Returns the permuted array. |
| c | Returns the bit-reversed index. |
x = [0:15].';
y = bitrevorder(x)