Adjust Timescale in Timeseries

5 次查看(过去 30 天)
Hello,
I have four different timeseries vectors containing velocity data from four different test runs. Since they were recorded in the field, the time between the startup of the data logger and the initial movement of the vehicle varies.
I am trying to remove this dead space in order to better compare the different runs.
I have tried adding events to the individual timeseries and then using gettsafteratevent(), but that only deletes the dead space and does not adjust the X-axis. I've also tried resampling with a new timevector, but have only had error messages with that.
Here is the image with the 4 different runs, and events placed where the run really begins:
The only other thought I had was to bring the data into arrays, delete the data that I dont need, and then reconvert to time series.
Anyone have any other ideas?
Thanks, Jay

采纳的回答

Star Strider
Star Strider 2015-10-12
One possibility (if you have the Signal Processing Toolbox) is to use the findpeaks function on the negative of your data. I’m not certain that would work on all your data, because even though I enlarged the image, I may not have been able to see all the variations in the deadspace area.
If some of your data don’t have any variations in the deadspace region that findpeaks could detect, another option would be to use the find function. Take a section of your data (such as the first half), and then threshold it using min and a range inequality For instance something like:
min_idx = find(y <= 1.01*min(y), 1, 'last');
to find the end of the ‘dead space’ region.
Without having your data to work with, I can’t write specific code, but these would be my initial approaches to programming the deadspace region endpoint.
  4 个评论
jrocket567
jrocket567 2015-10-13
Thanks. I was hoping to keep it in the timeseries format, but this is probably easier in the long run.
Star Strider
Star Strider 2015-10-13
My pleasure.
You could probably still keep it in timeseries format, just redefine it in terms of the new data. (I haven’t used timeseries objects much, so I have little experience with them, and can’t provide specific recommendations.)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Time Series 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by