Average for 4d data
조회 수: 9 (최근 30일)
이전 댓글 표시
Hi! How can I calculate the average for a 160x140x1x12 which are lat,lon,year and month. I want to calculate the average of month for one year.
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 11월 6일
You can specify the dimension to the mean() function
M = rand(160,140,1,12);
M_new = mean(M, 4)
댓글 수: 6
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!