Converting 3D matrix to 2D matrix .

조회 수: 19 (최근 30일)
Reza E Rabby
Reza E Rabby 2018년 4월 11일
답변: KSSV 2018년 4월 11일
I have 3D(20*28*8) matrix . want to convert into 2D (20*28) matrix .Where last 8 means three hour interval one day precipitation data . I want to convert it into daily data(sum of three hour interval 8 data into 1 data ). I have used followed code .
cmorph_precip=ncread('267523.cmorph_precip.cmorph.3hr-025deg.20030702.nc','cmorph_precip')
nd=size(cmorph_precip,3)
sum_rain=zeros(20,28)
for i=1,nd
rain=cmorph_precip(:,:,i)
sum_rain=sum_rain+rain
end

채택된 답변

KSSV
KSSV 2018년 4월 11일
A = rand(20,28,8) ;
m = mean(A,3) ;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by