Interpolate to monthly time series
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello,
I have a timeseries of time against temperature - smallest unit of time is hour
I want to interpolate so the month is the smallest unit of time.
How should I use this function to do this?
vq = interp1( x , v , xq )
Thank you
댓글 수: 0
채택된 답변
Walter Roberson
2019년 12월 27일
We recommend converting your timeseries to a timetable() object and then using retime()
댓글 수: 2
Walter Roberson
2019년 12월 27일
https://www.mathworks.com/help/matlab/ref/timetable2table.html adds the times back in as a column in the table. Or you can
timeseries(YourTimeTable{:,:}, YourTimeTable.Properties.RowTimes)
to create a timeseries object.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Time Series에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!