How to concatenate all these cells vertically?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have attached the file below. I'm unable to concatenate these cells verically.
2 Commenti
Bhaskar R
il 12 Nov 2019
Your data is table data stored as structure->cell->table.
Cell data arranged in horizantally(row matrix) if you want that data to vertical(column maxtrix) apply transpose
cell_data = S.result;
vertical_data = cell_data';
Risposta accettata
Stephen23
il 12 Nov 2019
Modificato: Stephen23
il 12 Nov 2019
>> load('matlab.mat')
>> R = S.result;
>> T = vertcat(R{:});
>> whos T
Name Size Bytes Class Attributes
T 41392x2 374716 table
To know how it works:
2 Commenti
Rik
il 12 Nov 2019
I was just about to write an answer with cat(1,R{:}), forgetting that it would call vertcat internally.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!