How can I stack multiple Matrices in 1 2D matrix?

조회 수: 1 (최근 30일)
Robert
Robert 2016년 1월 12일
답변: the cyclist 2016년 1월 12일
I have a 3D Matrix (96,35,43)
I want to change it to (3360,43) so that each 35x43 matrix is below the previous
How can I do this?

답변 (1개)

the cyclist
the cyclist 2016년 1월 12일
% Your original data:
x = rand(96,35,43);
% Reshaped as you want
xr = reshape(permute(x,[1 3 2]),3360,43);

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by