plotting live simulation graph from the simulink to matlab app designer.
49 views (last 30 days)
Show older comments
I am currently trying to build a gui for one of the simulink model using matlab app designer.It gives the output plot in the scope after around 100sec after the execution of the simulink model.I am not able to plot the live simulation plot on the matlab app designer.I have used sim command to simulate the simulink model and then used the plot command to plot the graph as shown below.
simout=sim('***.slx','StartTime',app.endTimeEditField.Value);
plot(app.UIAxes,simout.vlt.Time,simout.vlt.Data);
here vlt is the workspace used for the scope in the matlab simulink model. here the above two commands gives the output plot for the simulink model which gives the output graph instantaneously but it does not provide the graph for model which takes time to plot on the scope block(live simulation). Can you provide me a solution to this so that i can capture the live simulation result plot on the matlab app designer.I am a beginner and doing my 1st internship so plzz provide me a solution with explanation.Kindly reply to this question.
0 Comments
Answers (1)
Sandeep Mishra
on 30 Jun 2023
Hi Ayush,
I understand that you are trying to plot Live simulink model in your Matlab App Designer.
You can refer to a similar question that has been answered here :
Feel free to put any comments if you face any issue.
2 Comments
Sandeep Mishra
on 4 Jul 2023
You can open the TrialApp.mlapp file using MATLAB app designer
You can refer to the below documentation to learn more about "App Designer" in MATLAB.
See Also
Categories
Find more on Develop Apps Using App Designer 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!