Average the 3rd dimension in a matrix

조회 수: 1 (최근 30일)
Jonas Damsbo
Jonas Damsbo 2019년 1월 4일
댓글: Jonas Damsbo 2019년 1월 4일
I have a 360x181x360.
I want to average the 3rd dimension with 4, so I get a new matrix like 360x181x90.
How can I do that?

채택된 답변

Bruno Luong
Bruno Luong 2019년 1월 4일
편집: Bruno Luong 2019년 1월 4일
Mean every 4 indices of the third dimension
A=rand(360,181,360);
[m,n,p] = size(A);
m = mean(permute(reshape(A,m,n,4,[]),[1 2 4 3]),4)

추가 답변 (0개)

카테고리

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