How do I change the array of 200x2x100 to 100x2x200?
조회 수: 1 (최근 30일)
이전 댓글 표시
In Python, I use "np.transpose" code, but I don't know how to use it on Matlab..
댓글 수: 0
채택된 답변
Subhadeep Koley
2021년 4월 28일
편집: Subhadeep Koley
2021년 4월 28일
% Generate demo data
data = rand(200, 2, 100);
% Permute the data
newData = permute(data, [3 2 1]);
size(data)
size(newData)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!