timeseries data to MATLAB variable
9 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
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 日
Hi,
convert your timeseries data to timetable.
you need to study "timetable" in Matlab.
Cheers,
参考
カテゴリ
Help Center および File Exchange で Time Series Collections についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!