how to convert character array to cell array

2 visualizzazioni (ultimi 30 giorni)
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/..

Risposta accettata

Stephen23
Stephen23 il 25 Lug 2017
num2cell(reshape(X.',1,[]))
  13 Commenti
Stephen23
Stephen23 il 25 Lug 2017
Modificato: Stephen23 il 25 Lug 2017
reshape(C,[512,20]).'
Because MATLAB is column-major, so matrix vectorization goes along the columns first.
Jyothi Alugolu
Jyothi Alugolu il 26 Lug 2017
yeah ok..i got it..thank you soo much..

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by