I wanted to combine these cells into a table.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I wanted to perform horzcat to this.
0 Commenti
Risposta accettata
galaxy
il 25 Ott 2019
Do it as following:
load('matlab.mat');
out = cell2mat(new_raw(1,1));
for i=2:length(new_raw)
out = horzcat(out, cell2mat(new_raw(1,i)));
end
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Elementary Math 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!