timeseries data to MATLAB variable
조회 수: 2 (최근 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!