Cell To Array Problem
Mostrar comentarios más antiguos
I have many rows such as '0' '1' '1' '0', I want all of them to make in a single column , I mean 0110 . I tried the cell2mat and cellstr but they did not work as I wanted . As shown on the picture they are seperated to 8 columns, however I want it for example in the 1x1 -> 00000001 , 2x1 -> 00000011 , 3x1 -> 00000010 ... and it goes .

4 comentarios
Guillaume
el 22 de Feb. de 2018
Bearing in mind that the number 00000001 and 1 are the same and that matlab always store it and display as 1, what exactly do you want to do?
Trevor Badji
el 22 de Feb. de 2018
Matt J
el 22 de Feb. de 2018
You cannot have a matrix with elements
[0000001
0000011
0000010
0000100
...
]
That matrix will be stored as
[1
11
10
100
]
because in math we never write leading zeros.
So I repeat, what exactly do you want to do?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!