Efficiently update MATLAB App Designer GUI real time from Simulink
Show older comments
I have a Simulink model and a GUI made in app designer from which I control said model. So far I have been able to let the GUI and the Simulink model communicate both ways. The GUI sets parameter constant blocks in the model using set_param whereas the model updates the GUI through a callback using add_exec_event_listener. The GUI object resides in the model workspace.
In the startup callback of the model StartFcn I have the following code
set(0,'ShowHiddenHandles','on');
blk = [model '/q-log']; % Block to bind listener to
event = 'PostOutputs'; % Event to bind to (fired at every sample)
app = getVariable(get_param(bdroot,'ModelWorkspace'),'app'); % The GUI
% The GUI is passed into the event handler and updated at every timestep
listener = @(obj,event) updategui(obj,event,app);
h = add_exec_event_listener(blk, event, listener);
The problem with this setup is that it is extremely slow. I'm not quite sure how to get it faster and if this is the way to go. I've looked at a lot of examples but none detail my needs.
So my question is if there is a faster or more efficient way to update the GUI fields and plots? It doesn't have to be hard real time but writing variables to workspace and importing it into the GUI afterwards not is not acceptable.
3 Comments
ying xiong
on 28 May 2017
Hi, I have the same question with you, do you have any idea with this question now?
Chinna
on 6 Nov 2023
Hi, I am also facing the issue. Can someone help me if there is a faster or more efficient way to update the GUI fields and plots?
Hamza
on 17 Dec 2025
hey guys hows it going
Accepted Answer
More Answers (3)
ES
on 29 May 2017
0 votes
one way is instead of event listners, you can let the model update the gui.
For example, pause the model every cycle, read the values using get_param, runtimeobject and update the gui from the pause function.
2 Comments
Nick
on 29 May 2017
Camile van der Heijden
on 31 Aug 2017
Edited: Camile van der Heijden
on 31 Aug 2017
Hi Nick,
I have a very similar problem, where I was using a timer object within an appdesigner app to refresh a number of plots at 'high' refresh rates. Even at a 20 Hz frequency I'm running into severe stuttering/lag problems. I'm still using rather simple functions and a ODE model has yet to be incorporated. Did you finally manage to get your application working? If yes, how did you do it? (I'm currently debating rewriting everything in a different language, maybe Java or C++, even though I have very little experience in both.)
Regards
Muharrem Akkaya
on 13 Dec 2018
Edited: Muharrem Akkaya
on 13 Dec 2018
0 votes
Hey,
I am trying to do the exact same thing.
Can you share your code or explain how did you achieve?
Thanks
1 Comment
Pablo Romero
on 17 Dec 2018
Hi Muharrem,
The combination of timer class and drawnow gives usually a fast refresh rate on GUIs with AppDesigner.
To avoid additional processing when updating or retrieving parameters for real-time simulation, I usually suggest using the getparam and setparam functions from the Simulink Real-Time API instead of other functions because they are more performant. Please note that they are different from the more common get_param and set_param commands.
To get and display signal values, you can use either getsignal to get single signal values or signal logging with SDI for a complete data logging.
Cheers
Pablo
Stefanie Schwarz
on 21 Dec 2021
Edited: Stefanie Schwarz
on 21 Dec 2021
0 votes
See also the following MATLAB Answers post for more up-to-date info:
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!