How to merge cells together?
Mostrar comentarios más antiguos
How do I merge cells together and separate each cell with a ';'?
Respuesta aceptada
Más respuestas (1)
Jos (10584)
el 13 de Mayo de 2014
Another option using STRCAT
A = {'apple.doc', 'apple.xlsx', 'apple.csv', 'banana.doc', 'banana.xlsx'}
B = strcat(A,';')
C = [B{:}]
Categorías
Más información sobre Logical 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!