Transposing cells
Ältere Kommentare anzeigen
hi, how can I transpose each cell in a cell array?
Akzeptierte Antwort
Weitere Antworten (1)
Jan
am 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 Kommentar
Syed Abbas
am 19 Jan. 2012
Kategorien
Mehr zu Matrices and Arrays finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!