Create a matrix of binary numbers generated by sequence
Ältere Kommentare anzeigen
I want to create a general matrix to create outputs of the below format...
if n=1
output=[1 0]
if n=2
output=[1 1
1 0
0 1
0 0]
if n=3
output=[1 1 1
1 1 0
1 0 1
1 0 0
0 1 1
0 1 0
0 0 1
0 0 0]
for any number of n; the output matrix will be of the order of [2^n X n]
Akzeptierte Antwort
Weitere Antworten (2)
Azzi Abdelmalek
am 30 Mär. 2014
Bearbeitet: Azzi Abdelmalek
am 30 Mär. 2014
n=3;
s=0:1;
idx=rem(nchoosek(0:2^n-1,n),2)+1;
out=flipud(unique(s(idx),'rows'))
1 Kommentar
Mohammed
am 30 Mär. 2014
görkem tatar
am 18 Jun. 2021
0 Stimmen
y =dec2bin(x)
x = 'dec variable'
y = 'convertion of the dec variable to bin'
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!