how i average n values in array
Afficher commentaires plus anciens
if i have data a and i want to mean or average every 10 values as 1:10, 2:11, 3:12 and as so on for length of data ?
Réponse acceptée
Plus de réponses (2)
Star Strider
le 21 Août 2016
‘But i need overlap between the values as 1:10 then from 2:11 and so on’
Use a moving average filter:
Heart_pulse_avg = filter(ones(1,10), 10, Heart_pulse);
1 commentaire
Steven Lord
le 21 Août 2016
Andrei Bobrov
le 21 Août 2016
a - your vector;
out = movsum(a,[0 9],'Endpoints','discard')/10;
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!