how to plot struct data?

10 次查看(过去 30 天)
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"?

采纳的回答

Christopher Berry
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 个评论
sellyEpp
sellyEpp 2014-8-6
Thanks, selecting 'Structure With Time' worked for me!
Fernando Belda
Fernando Belda 2021-11-4
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!

请先登录,再进行评论。

更多回答(2 个)

AJ
AJ 2015-10-15
Thanks for this. Helped out a lot!!

Ardalan Sabamehr
Ardalan Sabamehr 2016-4-21
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,

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by