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!