Effacer les filtres
Effacer les filtres

25-hourly mean

1 vue (au cours des 30 derniers jours)
Sammy
Sammy le 28 Mar 2021
Commenté : darova le 29 Mar 2021
How do I get a 25-hour running mean for a time series that does not calculate the NaNs? I have an hourly data.

Réponse acceptée

Walter Roberson
Walter Roberson le 28 Mar 2021
movmean(YourData, 25, 'omitnan')
This assumes that YourData has something for every hour (even if NaN.)
If you have less regular data, including the case where your data skips the entries for missing data or where the data is not consistently 1 hour apart, then instead
movmean(YourData, hours(25), 'SamplePoints', Timestamps_for_existing_data)
  2 commentaires
Sammy
Sammy le 29 Mar 2021
It works!! Thank you so much! :D
darova
darova le 29 Mar 2021

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Oceanography and Hydrology 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!

Translated by