Mean computaion in matlab
Show older comments
How to comput mean of 3D mat file having lon, lat ,value !
Accepted Answer
More Answers (2)
James Tursa
on 22 Jul 2021
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
Berhanu Geremew
on 23 Jul 2021
0 votes
Categories
Find more on White in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!