how to convert character array to cell array

4 ビュー (過去 30 日間)
Jyothi Alugolu
Jyothi Alugolu 2017 年 7 月 25 日
コメント済み: Jyothi Alugolu 2017 年 7 月 26 日
hello, i have a char array of size 1280 * 8 ... values like 11111111 01010101 10100101 ........ 01010101 Now i want as 1*10240 cell array (since 1280 * 8 =10240)...output must be 1,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1.....i used str2num ..but they were being conatanated as vertical..i want to conctanate horizantally/..

採用された回答

Stephen23
Stephen23 2017 年 7 月 25 日
num2cell(reshape(X.',1,[]))
  13 件のコメント
Stephen23
Stephen23 2017 年 7 月 25 日
編集済み: Stephen23 2017 年 7 月 25 日
reshape(C,[512,20]).'
Because MATLAB is column-major, so matrix vectorization goes along the columns first.
Jyothi Alugolu
Jyothi Alugolu 2017 年 7 月 26 日
yeah ok..i got it..thank you soo much..

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by