How to extract data from simulink to work space in matlab?
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I tried to design a LQR controller. I wrote the code and design a simulink model.
I wanted to extract data from simulink to workspace.
But when i run the code it says error in time which i have written as t= sim_X.time.
How can I solve the issue?
I have attached the screen shot below.

2 comentarios
Sugar Daddy
el 1 de Jun. de 2020
make sure it is sim_X.time or sim_X.Time or sim_X.tout. Visualize it in workspace
Respuestas (2)
khalid elamin
el 12 de En. de 2021
Try this:
simOut =sim('simulinkviayoutube')
t = simOut.sim_X.time;
x1 = simOut.sim_X.signals.values(:,1);
x2 = simOut.sim_X.signals.values(:,2);
it will help you !!
0 comentarios
Ameer Hamza
el 1 de Jun. de 2020
Try "To workspace" block: https://www.mathworks.com/help/releases/R2020a/simulink/slref/toworkspace.html
2 comentarios
Ameer Hamza
el 2 de Jun. de 2020
Have you selected "Timeseries" as save format inside the To workspace block?
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

