Mean computaion in matlab
이전 댓글 표시
How to comput mean of 3D mat file having lon, lat ,value !
채택된 답변
추가 답변 (2개)
James Tursa
2021년 7월 22일
You can specify the dimension to use with the mean( ) function. E.g., maybe this is the computation you want:
data = your 3D matrix
ave = mean(data,3); % mean of 3rd dimension
카테고리
도움말 센터 및 File Exchange에서 White에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!