Reading data from cell array
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ahmad Hasnain
il 24 Apr 2019
Commentato: Ahmad Hasnain
il 24 Apr 2019
I have a cell array that contains all the data. A{1,1}, A{2,1},...A{37,1}.
Now, I want to extract the first row from A{1,1}, A{2,1},...A{37,1} and then combine all the 37 rows in one mat file. How can I do that?
2 Commenti
Risposta accettata
madhan ravi
il 24 Apr 2019
Modificato: madhan ravi
il 24 Apr 2019
C = cell2mat(cellfun(@(x) x(1,:), A, 'un',0));
save mymat.mat C
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Types 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!