how to convert character array to cell array

4 visualizaciones (últimos 30 días)
Jyothi Alugolu
Jyothi Alugolu el 25 de Jul. de 2017
Comentada: Jyothi Alugolu el 26 de Jul. de 2017
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/..

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by