Converting cell array containing char to array.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohamed Abdelsamie
le 21 Fév 2019
Réponse apportée : Stephen23
le 21 Fév 2019
Hi,
I have a few cell arrays that contain char arrays that I need to convert to a single array. Currently the contents of the cell arrays are either numbers or [] for empty cells.
I tried cell2mat, str2num, str2double and all didn't work.
I attached one of the cell arrays.
Any help would be greatly appreciated.
Thanks
2 commentaires
Fangjun Jiang
le 21 Fév 2019
How do you want to convert "chars" to single array? You can make up a simple cell array to show your problem.
Réponse acceptée
Plus de réponses (1)
Mohamed Abdelsamie
le 21 Fév 2019
Modifié(e) : Mohamed Abdelsamie
le 21 Fév 2019
4 commentaires
Stephen23
le 21 Fév 2019
Modifié(e) : Stephen23
le 21 Fév 2019
"Vertcat didn't change the cell array at all"
I would not expect vertcat to "change" anything. All it does is vertically concatenate its inputs together. Which is exactly what you showed in your answer... vertcat with a comma-separated list is just simpler than what you wrote:
desired_array = vertcat(cell_array{1,1:8})
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!