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!