Transposing cells
古いコメントを表示
hi, how can I transpose each cell in a cell array?
採用された回答
その他の回答 (1 件)
Jan
2012 年 1 月 19 日
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
カテゴリ
ヘルプ センター および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!