timeseries data to MATLAB variable
显示 更早的评论
The Simulink model generates a timeseries data that is saved in workspace, how to save a specific column of this to an array in MATLAB?
4 个评论
JOB
2018-12-25
Walter Roberson
2018-12-25
Suppose ts is a timeseries, then ts.Data is the full data of the timeseries antd ts.Time is the time values. You can, for example,
ts.Data(:,5000:end,:)
回答(1 个)
bushra raza
2018-12-24
1 个投票
Hi,
convert your timeseries data to timetable.
you need to study "timetable" in Matlab.
Cheers,
类别
在 帮助中心 和 File Exchange 中查找有关 Time Series Collections 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!