RESHAPE
4 ビュー (過去 30 日間)
古いコメントを表示
i have an array of binary numbers of size(1*32768)... i need to reshape this to another array of size(4096*8) with the first 8 binary digits of the previous array as the first row of the new array....how to do this????
0 件のコメント
回答 (1 件)
Walter Roberson
2012 年 2 月 9 日
reshape(A, [8 4096]) .'
You must do it this way in order to have the bits come out row-wise.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!