how can i convert hourly data for a year to daily data?
이전 댓글 표시
my data start from 1:1:8760 how can i chnge it to daily data with 365 data instead of 8760
댓글 수: 1
Ingrid
2015년 6월 3일
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, ....
채택된 답변
추가 답변 (1개)
Albatross
2015년 6월 12일
I suspect you want to do something like this:
a=1:1:8760;
b=reshape(a,24,365)'
카테고리
도움말 센터 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!