timeseries data to MATLAB variable
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Walter Roberson
le 25 Déc 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,:)
Réponses (1)
bushra raza
le 24 Déc 2018
Hi,
convert your timeseries data to timetable.
you need to study "timetable" in Matlab.
Cheers,
Voir également
Catégories
En savoir plus sur Time Series Collections dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!