timeseries data to MATLAB variable
Ältere Kommentare anzeigen
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 Kommentare
JOB
am 25 Dez. 2018
Walter Roberson
am 25 Dez. 2018
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,:)
Antworten (1)
bushra raza
am 24 Dez. 2018
1 Stimme
Hi,
convert your timeseries data to timetable.
you need to study "timetable" in Matlab.
Cheers,
1 Kommentar
Kategorien
Mehr zu Time Series Collections finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!