Matlab: trasform cell arrays into a matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
elisa ewin
il 7 Set 2016
Modificato: Andrei Bobrov
il 7 Set 2016
Hi,
I want to trasform U (attacched) in a matrix Z 5 x 12
Z=[0 0 0 0 0 0 0 0 0 0 1933724 260957; 341255 0 0 0 0 0 0 0 0 0 16907 0; 23261 0 0 0 0 0 0 153505 0 420315 0 15372; 0 0 0 0 0 0 0 0 0 5535878 0 0; 0 0 0 0 0 0 0 0 0 16516 0 316637]
Can you help me? Thanks
0 Commenti
Risposta accettata
Andrei Bobrov
il 7 Set 2016
Modificato: Andrei Bobrov
il 7 Set 2016
zz = cat(1,U{:});
zz(cellfun(@isempty,zz)) = {0};
Z = cellfun(@(x)x(1),zz);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!