Concatenate cell array into one string
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Artyom
el 29 de Ag. de 2014
Respondida: Honglei Chen
el 29 de Ag. de 2014
Hi. I want to concatenate a cell array {'a', 'b', 5, []} in a string 'a b 5'. How can I do this?
0 comentarios
Respuesta aceptada
Honglei Chen
el 29 de Ag. de 2014
x = {'a','b',5,[]}
x = cellfun(@num2str,x,'UniformOutput',false)
sprintf('%s ',x{:})
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Cell Arrays 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!