필터 지우기
필터 지우기

how to plot struct data?

조회 수: 9 (최근 30일)
sellyEpp
sellyEpp 2014년 8월 6일
댓글: Fernando Belda 2021년 11월 4일
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
Christopher Berry 2014년 8월 6일
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,

카테고리

Help CenterFile Exchange에서 Signal Attributes and Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by