Get value from simulink model to matlab gui while simulink is running
Mostrar comentarios más antiguos
With respect to following post I have some doubts related to command get_param:
1) When I use this command it returns me empty vector. 2) Can we use this command for any block like display, demux and out or it has to be Gain block only?
Thanks Mitesh
Respuesta aceptada
Más respuestas (3)
Paulo Silva
el 19 de Ag. de 2011
2 votos
- When you use get_param where? what block and what code?
- That command can only get the parameters supported by the block you are using as argument.
5 comentarios
Mitesh Farsodia
el 19 de Ag. de 2011
Paulo Silva
el 19 de Ag. de 2011
That only gives the handle to the object, you should use listeners instead, please see this:
http://www.mathworks.com/matlabcentral/fileexchange/24294-simulink-signal-viewing-using-event-listeners-and-a-matlab-ui
Mitesh Farsodia
el 19 de Ag. de 2011
Mitesh Farsodia
el 19 de Ag. de 2011
Kristof
el 13 de Abr. de 2014
You first have to start simulation, and right after that you can add eventlisteners.
Arunkumar Muthukumaran
el 17 de Dic. de 2015
0 votos
Another solution would be to use a Matlab function in your model to update the GUI handle in each timestep. Pass the value from model which needs to be displayed in GUI and update GUI handle respectively.
ian barahona
el 1 de Jun. de 2020
0 votos
Another posible solution is using another block instead of a "Gain" block. i used a "Product" and worked like it was a "Gain" block. rto = get_param('lm35_sim/Product','RuntimeObject');
Categorías
Más información sobre Programmatic Model Editing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!