Average the 3rd dimension in a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
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 Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!