Calculating mean values of a 3D matrix for every rows

3 vues (au cours des 30 derniers jours)
Joydeb Saha
Joydeb Saha le 30 Mar 2022
Commenté : Joydeb Saha le 6 Avr 2022
I have a matrix 12x441x1440. 12 is the dimension of time. how can I get 12 average numbers for every month from that matrix

Réponse acceptée

Simon Chan
Simon Chan le 30 Mar 2022
Try this:
mean(yourmatrix,[2 3]);
  4 commentaires
Bruno Luong
Bruno Luong le 30 Mar 2022
Look like you have old MATLAB version
mean(mean(yourmatrix,2),3);
Joydeb Saha
Joydeb Saha le 6 Avr 2022
thanks Bruno

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by