Mean computaion in matlab
Mostra commenti meno recenti
How to comput mean of 3D mat file having lon, lat ,value !
Risposta accettata
Più risposte (2)
James Tursa
il 22 Lug 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
il 23 Lug 2021
0 voti
Categorie
Scopri di più su White in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!