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!