how can i convert hourly data for a year to daily data?
Mostra commenti meno recenti
my data start from 1:1:8760 how can i chnge it to daily data with 365 data instead of 8760
1 Commento
Ingrid
il 3 Giu 2015
depends on what you want to do? How do you want to make the conversion. Do you require daily average, daily maximum, daily minimum, value at noon each day, ....
Risposta accettata
Più risposte (1)
Albatross
il 12 Giu 2015
I suspect you want to do something like this:
a=1:1:8760;
b=reshape(a,24,365)'
Categorie
Scopri di più su Data Type Conversion in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!