Effacer les filtres
Effacer les filtres

How to group a collection of values in a vector?

4 vues (au cours des 30 derniers jours)
Paul Torres
Paul Torres le 11 Juil 2018
Commenté : Paul Torres le 17 Juil 2018
I have a data set that is made up of measurements done every 6 hours over the course of a year. So that is 1460 for an ordinary year and 1464 for a leap year. I am having trouble grouping them so that the values of each 4x6 hour group is averaged into a day.
Each year is a vector.

Réponse acceptée

Rik
Rik le 11 Juil 2018
There are a myriad of way to do this, one of them should be the code below.
data=1:12;%example data
data=reshape(data,4,[]);%reshape so each day is a column (hence 4 rows)
dayly_mean=mean(data,1);
  2 commentaires
Rik
Rik le 14 Juil 2018
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.
Paul Torres
Paul Torres le 17 Juil 2018
No, this solved the problem perfectly without me having to go through the trouble of creating a for loop. Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by