Real time data input and output from gui to simulink
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
RUDRAKSH
el 15 de En. de 2014
Respondida: RUDRAKSH
el 17 de En. de 2014
I need to give 5 digital input from GUI for which i am using Radio button and want to plot two digital output from matlab/simulink on a gui in Real time. As i have no experience with GUI so understanding example code is very difficult. Can any body help me with my problem
0 comentarios
Respuesta aceptada
ES
el 15 de En. de 2014
suppose if your model has a constant block whose value you want to set depending on the radio button, then in the callback of the radio button you can put a
for eg: Under call back of Radio Button 1
if hObject('value')==1
set_param('Constant Block Path','value',1);
end
similarly Under call back of Radio Button 2
if hObject('value')==1
set_param('Constant Block Path','value',2);
end
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!