How do I change the array of 200x2x100 to 100x2x200?

조회 수: 1 (최근 30일)
JIWON LEE
JIWON LEE 2021년 4월 28일
편집: Subhadeep Koley 2021년 4월 28일
In Python, I use "np.transpose" code, but I don't know how to use it on Matlab..

채택된 답변

Subhadeep Koley
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)
ans = 1×3
200 2 100
size(newData)
ans = 1×3
100 2 200

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by