How do you convert the cell within a cell to a vector?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
L'O.G.
le 7 Mai 2023
Réponse apportée : Walter Roberson
le 7 Mai 2023
I have a cell of cells. The inner cell is a 1 x 1 and contains a vector. The vector in each inner cell might be of different length. How do I convert this inner cell into an ordinary vector?
0 commentaires
Réponse acceptée
Walter Roberson
le 7 Mai 2023
testcell = {{[1]} {[2 3]} {[4 5 6]}}
output = cellfun(@(C) C{1}, testcell, 'uniform', 0)
testcell{2}
output{2}
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Types 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!