create all logic permutation array

1 次查看(过去 30 天)
Nguyen Huy
Nguyen Huy 2021-8-11
编辑: DGM 2021-8-12
how cloud i create all random logic array when the length is known
eg: length=3
arr=[ 1 0 0
0 1 0
0 0 1
1 1 0
0 1 1
1 0 1
1 1 1]

回答(2 个)

Yazan
Yazan 2021-8-11
d = (1:2.^3-1)';
b = de2bi(d);
b
b = 7×3
1 0 0 0 1 0 1 1 0 0 0 1 1 0 1 0 1 1 1 1 1

DGM
DGM 2021-8-12
编辑:DGM 2021-8-12
If you don't have the communications toolbox:
n = 3; % number of bits
LUT = dec2bin((0:2^n-1).',3)=='1'
LUT = 8×3 logical array
0 0 0 0 0 1 0 1 0 0 1 1 1 0 0 1 0 1 1 1 0 1 1 1
Note the bit order. Also, this example includes 0

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by