Filter löschen
Filter löschen

converting a 1x4096 cell, containing binary to 1x(4*4096) double containing binary codes

1 Ansicht (letzte 30 Tage)
Hi,
My code generates a x by y matrix, containing random numbers within range of (0 to Order-1) as follow:
x=600; y=8; order=16; bits=randint(x, y ,order,1);
I convert the each integer value to binary as follow
binary=dec2bin(bits,log2(order));
which result in a matrix of class char. I then convert it into a cell array as follow
binary=cellstr(binary); binary=binary';
which results in a long cell row of lenght 4096 where each cell has log2(order) bits. how can I convert this row. such that I will have each single bit in a seperate cell of double class. such that I will end up with a 1x(4*4096) double
Many thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 23 Jun. 2012
binary = (dec2bin(bits,log2(order)) - '0') .' ;
With no cellstr()

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by