Filter löschen
Filter löschen

How to create a matrix (64 X 6) with all numbers from 1 to 64, written by binary code?

2 Ansichten (letzte 30 Tage)
I try to use this function , but I have just a matrix(64 X 1)
D = [ ];
D = str2num(dec2bin(0:63, 6));
The solution must be :
D = [ 0 0 0 0 0 0
0 0 0 0 1 0
0 0 0 0 1 1
0 0 0 1 0 0
.................
1 1 1 1 1 1]

Akzeptierte Antwort

dpb
dpb am 1 Jun. 2019
D=double(dec2bin(0:63,6))-'0';

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by