Effacer les filtres
Effacer les filtres

how to extract all the data from cell and connect them to one array?

3 vues (au cours des 30 derniers jours)
Pengju
Pengju le 5 Fév 2016
Commenté : Pengju le 5 Fév 2016
I have a mat file includes 100000 cells, I want to extract the data from each cell, and connect them into one array. any help?

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Fév 2016
The .mat file contains a variable named Record which is a cell array. Each entry is something-by-3, minimum 3 x 3 and at most 20 x 3. In total there are 1128286 entries. If you are looking for a 1128286 x 3 numeric output then:
result = vertcat(Record{:});

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional 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!

Translated by