how to plot struct data?
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sellyEpp
le 6 Août 2014
Commenté : Fernando Belda
le 4 Nov 2021
Hi, I am running a simulation in Simulink and using a to workspace block,to view the results also in the workspace. what I get as results in my workspace is an output with the name of my block, "simout", which is a 1*1 struct and a "tout" which is double. how can I plot my "simout"?
0 commentaires
Réponse acceptée
Christopher Berry
le 6 Août 2014
The simout structure has simout.signals, simout.time and simout.blockName fields. The simout.signals field also has a simout.signals.values field, which holds your sampled data.
Further, if you selected 'Structure With Time' in your 'To Workspace' block, then the time field will be populated and the easiest way to plot it is like this:
>> plot(simout.time,simout.signals.values)
Otherwise, simout.time is left empty and you should just use the tout vector for your time variable like this:
>> plot(tout,simout.signals.values)
2 commentaires
Fernando Belda
le 4 Nov 2021
Hi! I have a similar case, but i would like also plot the title of each signal, so in the figure appear not only the values of every signal, but also the name of it. How can this be done?
Thank you in advice!
Plus de réponses (2)
Ardalan Sabamehr
le 21 Avr 2016
Hi,
I got the output file from Complex continuous Morlet wavelet and it saved in work space as a struct file that I want to convert the file (scale to frequency) but it is block , How I can move my struct file to normal file in work space that I can plot them.
Thanks,
0 commentaires
Voir également
Catégories
En savoir plus sur Prepare Model Inputs and Outputs dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!