How to reshape array items and put them in a single cell

조회 수: 1 (최근 30일)
Phoenix98
Phoenix98 2018년 10월 3일
편집: Stephen23 2018년 10월 3일
Hello,
I have 360x1280 numeric array and I want to reshape each of 360 items to 10x128 and store the image array as a cell row using for loop?

답변 (2개)

KSSV
KSSV 2018년 10월 3일
I = rand(360,1280) ;
iwant = cell(1280,1) ;
for i = 1:1280
iwant{i} = reshape(I(:,i),10,128)) ;
end

Stephen23
Stephen23 2018년 10월 3일
편집: Stephen23 2018년 10월 3일
Where M is your 360x1280 matrix:
C = squeeze(num2cell(reshape(M.',10,128,360),1:2));

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by