Concatenate cell array into one string
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Artyom
le 29 Août 2014
Réponse apportée : Honglei Chen
le 29 Août 2014
Hi. I want to concatenate a cell array {'a', 'b', 5, []} in a string 'a b 5'. How can I do this?
0 commentaires
Réponse acceptée
Honglei Chen
le 29 Août 2014
x = {'a','b',5,[]}
x = cellfun(@num2str,x,'UniformOutput',false)
sprintf('%s ',x{:})
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!