Simulink to matlab results display

26 views (last 30 days)
I'm trying to display some results from simulink. At the moment I have them as shown here:
As the datasets are so different I would like to display them as shown here:
What's the easiest way to do this? Export them back into matlab is what I have been trying, using the simout function. But then trying to plot them in the matlab environment gives me errors.
Thanks for any help.

Accepted Answer

C.J. Harris
C.J. Harris on 4 Jan 2012
Export the signals from Simulink by using the 'To Workspace' block. Set the save format as 'Structure With Time'. In Matlab you can then plot the data using the plot command:
plot(simout.time, simout.signals.values);
However, if you have muxed multiple signals together (such as the four in the attached image), you can use subplot to show all the various signals individually. For example:
subplot(4,1,1)
plot(simout.time, simout.signals.values(:,1));
subplot(4,1,2)
plot(simout.time, simout.signals.values(:,2));
subplot(4,1,3)
plot(simout.time, simout.signals.values(:,3));
subplot(4,1,4)
plot(simout.time, simout.signals.values(:,4));
  1 Comment
Kevin Peel
Kevin Peel on 4 Jan 2012
That has worked perfectly. Thank you so much.

Sign in to comment.

More Answers (0)

Categories

Find more on Modeling in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!