Simulink to workspace doesn't work
Show older comments

My Simulink file was like that and when i want to plot the results it doesnt work
%file is untitled2.m
Mp =10;
Mj=60;
Bp = 100;
Bj = 10;
KR = 400;
sim('parachute')
subplot(4,1,1)
plot(out.Time,out.xj,out.Time,out.xp,'--')
subplot(4,1,2)
plot(out.Time,out.vj,out.Time,out.vp,'--')
subplot(4,1,3)
plot(out.Time,out.aj)
subplot(4,1,4)
plot(out.Time,out.delx)
Output workspace is like that:

How can i fix that? Thanks.
Accepted Answer
More Answers (1)
Walter Roberson
on 26 Nov 2023
0 votes
Turn off Single Simulation Output; https://www.mathworks.com/help/simulink/gui/singlesimulationoutput.html
3 Comments
Mustafa Duran
on 26 Nov 2023
madhan ravi
on 26 Nov 2023
See my answer above for the data format I mentioned.
Walter Roberson
on 26 Nov 2023
What gets stored at the MATLAB level is likely going to be a time series .
Categories
Find more on Sources in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
