How to time-match measurements for two time series?
6 views (last 30 days)
Show older comments
I have two time series, only one is missing data and they are of different lengths. Both are the same frequency (one hour). I need to time match the measurements. My time series is around 1000 measurement and I have to repeat the process four different times.
Example, one time series has my data and the other is a continuous data set of wind speed from 1991 to the present (one hour frequency). How can I efficiently match the data from 13:00 on January 1st, 1991? And then repeat for every day that I have measurements so that it matches with the wind And without gap-filling the data set with NaN's for the missing times. This would create a very large matrix.
0 Comments
Answers (1)
Rohan Kale
on 5 Aug 2017
You can correlate the two data to find out the index of the correlation peak. Later, you can use this index to shift the indices of the missing data using circshift() .
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!