フィルターのクリア

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

1 回表示 (過去 30 日間)
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

採用された回答

Walter Roberson
Walter Roberson 2012 年 6 月 23 日
binary = (dec2bin(bits,log2(order)) - '0') .' ;
With no cellstr()

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by