How can I change timetable to timeseries?

30 次查看(过去 30 天)
Hello everyone,
I am trying to convert a timetable (DD:MM:YYYY HH::MM:SS) into a time series so that I can run it in Simulink but have trouble doing so. Is anyone able to help me out?

采纳的回答

Star Strider
Star Strider 2025-5-1
According to the timeseries documentation, it wants the data values as the first argument, and the time values as the second argument.
From the documentation:
ts = timeseries(datavals,timevals) specifies the sample times for the series. The resulting object sorts the data by time.
.
  4 个评论
may95
may95 2025-5-9
ts = timeseries(TT.Tamb, seconds(TT.Time-TT.Time(1)))
This worked! Thank you so much I could hug you through my screen.
Star Strider
Star Strider 2025-5-9
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2025-5-1
timeseries() does not accept duration or datetime times.
"Sample times, specified as a numeric scalar or vector, or a cell array of date character vectors. Valid date character vectors can have the following forms:"
You can use
ts = timeseries(Tsec{:,:}, datestr(Tsec.Properties.RowTimes));
  3 个评论
may95
may95 2025-5-9
Thank you for sending me this information, I didn't know this existed before. Unfortunately this caused the computer to shut down so it didn't work. Also tried Java Heap Cleaner and didn't help. Another user has answered my question. Thank you for your help! :)

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by