Convert cell array to an array, when the size of the cells is different
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nikolas Spiliopoulos
il 4 Dic 2018
Commentato: Nikolas Spiliopoulos
il 4 Dic 2018
Hi all,
I have a cell array like this A={ [0 0 0 0] ; [1 1] ;[2] }
Is it possible to convert it in an array? I tried with cell2mat but I get an error because the sizes are different
thanks
Nikolas
0 Commenti
Risposta accettata
Più risposte (1)
madhan ravi
il 4 Dic 2018
[A{:}] % which is eqivalent to horzcat(A{:})
3 Commenti
madhan ravi
il 4 Dic 2018
Modificato: madhan ravi
il 4 Dic 2018
just give an example of your desired output in the example you gave! plus how can you put them in an array when the number of columns are different??
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!