Take a fixed window average of large column vector?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Im trying to shrink the size of a column vector by averaging every 10 terms inside. At the moment it has about 7000 terms inside and I would like to shrink it by a factor of 10. I have been trying to use mean reshape command but to no avail. Can anyone help?
thanks
0 commentaires
Réponses (1)
Ameer Hamza
le 12 Nov 2020
This shows an example
x = rand(7000,1);
y = mean(reshape(x, 10, []))
0 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!