Mean computaion in matlab
Mostrar comentarios más antiguos
How to comput mean of 3D mat file having lon, lat ,value !
Respuesta aceptada
Más respuestas (2)
James Tursa
el 22 de Jul. de 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
el 23 de Jul. de 2021
0 votos
Categorías
Más información sobre White en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!