combine 3 dimensions array in cells into 1 cell
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
0 Commenti
Risposta accettata
Orion
il 29 Ott 2014
Hi,
just concatenate using cat
% generate a 1x10 cell, every element is a 10x10x50 array
for i = 1:10
C1{i} = i*rand(10,10,50);
end
% create a unique array by concatenating along the 3rd direction
BigArray = [];
for i = 1:10
BigArray = cat(3,BigArray,C1{i});
end
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Dictionaries 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!