Save data from Simulink Scope
Afficher commentaires plus anciens
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
3 commentaires
Wasn't this question already asked and answered in this thread?
Jack Daniels
le 29 Nov 2025
Simscape
le 13 Sep 2026 à 18:53
https://youtu.be/XsXpHQh3jLQ?si=l-s-lYmT1PUzaXf-
Réponse acceptée
Plus de réponses (2)
Aarthi
le 16 Juin 2026
0 votes
if true
% code
end
Arianna
le 18 Sep 2026 à 4:34
Paul
a ajouté un drapeau à réponse
This is a very common issue when working with Simulink Scope logging. Looking at your screenshot, your Save format is set to Dataset (ScopeData1).
When saving as Dataset, MATLAB doesn't output plain arrays directly to the Workspace; instead, it wraps the time-series data inside a Simulink.SimulationData.Dataset object.
Extract data from the Dataset object
Check your MATLAB Workspace for the variable named ScopeData1 (or out.ScopeData1 if single simulation output logging is enabled). You can extract the signal values using:
mySignal = ScopeData1.getElement(1).Values;
plot(mySignal.Time, mySignal.Data);
Also, make sure Single simulation output isn't wrapping everything into an out object (e.g., check for out.ScopeData1 in your workspace)!.
Catégories
En savoir plus sur Data Logging dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

