Effacer les filtres
Effacer les filtres

Find the mean of every 5 values in an array

6 vues (au cours des 30 derniers jours)
Lanceric Tse
Lanceric Tse le 13 Août 2018
Hi, so I have an array of double
b=[ 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0]
How do I obtain the mean of every 5 values?

Réponse acceptée

Geoff Hayes
Geoff Hayes le 13 Août 2018
Lanceric - try using reshape to change your array from a 1x20 to a 5x4 array and then compute the mean from that. For example,
mean(reshape(b,[5,4]))

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by