Conversion to double from timeseries is not possible
27 views (last 30 days)
Show older comments
Muhammad Saad
on 10 Mar 2022
Commented: Muhammad Saad
on 18 Mar 2022
I have a simulink model where I logged a few signals and exported the timeseries data using the 'Data Inspector'. I want to perform some calculations using samples at certain times.
MATLAB shows an error when I try to save the output(While loop) in a row matrix.
Can you help on how I can fix this without trying to convert the logged save format.

0 Comments
Accepted Answer
Walter Roberson
on 10 Mar 2022
Edited: Walter Roberson
on 10 Mar 2022
getsampleusingtime() retrieves a subset of a timeseries, but is itself a timeseries object. You need to access the Data property of the object .
Note: you might want to consider converting the timeseries to a timetable() object, and using retime()
More Answers (0)
See Also
Categories
Find more on Time Series Collections in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!