Effacer les filtres
Effacer les filtres

converting data from minutes to hours

1 vue (au cours des 30 derniers jours)
Oliver
Oliver le 4 Déc 2011
Hi, I have a data set of temperature values for every minute over a time period. What would be the easiest way to convert the data in to hourly data by taking an average of 60 minute periods?
Thanks, Olly

Réponse acceptée

David Young
David Young le 4 Déc 2011
>> data_minute = rand(180, 1); % synthetic data
>> data_hour = mean(reshape(data_minute, 60, []))
  1 commentaire
Oliver
Oliver le 4 Déc 2011
that's great, thanks for the help

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Time Series 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