Save data from Simulink Scope
26 views (last 30 days)
Show older comments
I have checked "Log data to workspace" in the Simulink Scope under the Logging pane, but after running the simulation, no data are saved to the workspace.
Is there any additional setting required to ensure that the data are stored correctly?

Thank you
2 Comments
Accepted Answer
Paul
on 29 Nov 2025 at 12:05
Edited: Paul
on 29 Nov 2025 at 13:16
"I have this setting: is it correct?"
It's correct if you want all of your logged variables to be contained within a single variable called "out". Uncheck the box if you'd rather have all of your logged variables be sent to the workspace individually.
"[ScopeData1] is strored inside [the variable named] out?"
Yes
"How to get data out and plot again the same way as on oroginal scope 'cause when right clickng there is no option to plot ? ... something as plot(ScopeData1)"
For plotting:
plot(out.ScopeData1)
For access more generally, see:
See Simulink.Simulation.Dataset for how to work with datasets. Or, change the Save Format in the Logging properties of the scope to an alternative format if preferred.
0 Comments
More Answers (0)
See Also
Categories
Find more on View and Analyze Simulation Results 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!
