Transposing cells
Mostra commenti meno recenti
hi, how can I transpose each cell in a cell array?
Risposta accettata
Più risposte (1)
Jan
il 19 Gen 2012
Or by a loop:
a{1} = [1 2; 3 4];
a{2} = [5 6; 7 8];
for i = 1:numel(a)
a{i} = transpose(a{i});
end
1 Commento
Syed Abbas
il 19 Gen 2012
Categorie
Scopri di più su Matrices and Arrays in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!