How to make a={'1','2','3','4'} to b={'1234'}
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
dmfwlansejr
el 1 de Sept. de 2021
Editada: Walter Roberson
el 1 de Sept. de 2021
a={'1','2','3','4'}
make to b={'1234'}
0 comentarios
Respuesta aceptada
Wan Ji
el 1 de Sept. de 2021
The simple way is
a={'1','2','3','4'};
b = {[a{:}]}
Answer
b =
1×1 cell array
{'1234'}
0 comentarios
Más respuestas (2)
Walter Roberson
el 1 de Sept. de 2021
Editada: Walter Roberson
el 1 de Sept. de 2021
a={'1','2','3','4'}
B = {strjoin(a, '')}
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!