25-hourly mean
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sammy
el 28 de Mzo. de 2021
Comentada: darova
el 29 de Mzo. de 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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 28 de Mzo. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!