How combine <16x1 cell> and <16x1 cell> into <32x1 cell> by using matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ismail T. Ahmed
el 15 de Jun. de 2017
Comentada: Ismail T. Ahmed
el 16 de Jun. de 2017
I have some images from each image product 16x1 cell so how i can combined each 16x1 cell with next 16x1 cell and with next 16x1 cell ........etc
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Jun. de 2017
[Cell_1; Cell_2; ...]
or
reshape( [Cell_1, Cell_2, ...], [], 1)
Depending if you want the pattern to be AAAAAAAAAAAAAAAABBBBBBBBBBBBBBB or ABABABABABABABABABABABABABABABAB
7 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!