Transposing cells
Afficher commentaires plus anciens
hi, how can I transpose each cell in a cell array?
Réponse acceptée
Plus de réponses (1)
Jan
le 19 Jan 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 commentaire
Syed Abbas
le 19 Jan 2012
Catégories
En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!