timeseries data to MATLAB variable
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 25 de Dic. de 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,:)
Respuestas (1)
bushra raza
el 24 de Dic. de 2018
Hi,
convert your timeseries data to timetable.
you need to study "timetable" in Matlab.
Cheers,
1 comentario
Ver también
Categorías
Más información sobre Time Series Collections en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!