Transforming a 3d array

조회 수: 3 (최근 30일)
Chris Brown
Chris Brown 2017년 2월 1일
댓글: Chris Brown 2017년 2월 1일
I have a 3D array that is 100x100x60, I also have a 3D array that is 100x60x100. Due to this I get the message 'Index exceeds matrix dimensions', when trying to perform further calculations. Is there a simple way to transform the second array to be 100x100x60?

채택된 답변

Stephen23
Stephen23 2017년 2월 1일
편집: Stephen23 2017년 2월 1일
reshape(B,[100,100,60])
or
permute(B,[1,3,2])
where B is the second array. Note that the answer depends on how you want the data to be arranged inside the new array: you need to check this yourself.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by