How to convert (2x3)[each element in 2x3 contains 1x19 double]cell array ?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Bajdar Nour
il 12 Ott 2018
Riaperto: Walter Roberson
il 22 Dic 2018
2x3 cell Capture.jpg I want to convert to something like shown in 2nd jpg
3 Commenti
Risposta accettata
Fangjun Jiang
il 12 Ott 2018
my guess, A is the original data, B is the desired result
A=repmat({1:5},2,3);
B=cell2mat(reshape(transpose(A),[],1))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion 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!