How to link Radio button and Push button (Matlab GUI)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abraham Chan
am 5 Apr. 2015
Beantwortet: Ali Noori
am 25 Jun. 2015
When handles.radiobutton1 is selected then
user click the Push button the code is executed.
How to implement this? see attach file
0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 5 Apr. 2015
Abraham - the easiest way to implement this GUI is through GUIDE using a callback for the push button. See the tutorials that can be found here.
2 Kommentare
Geoff Hayes
am 5 Apr. 2015
Abraham - use the handles structure which is the third input to the push button callback as it has (at the least) the handles to all controls used in your GUI. For example,
function pushbutton1_Callback(hObject, eventdata, handles)
if get(handles.radiobutton1,'Value')
% do something
else
% do something else
end
Weitere Antworten (2)
Ali Noori
am 25 Jun. 2015
To link between push button and radio button, do like this:
function pushbutton1_Callback(hObject, eventdata, handles)
if get(handles.radiobutton1,'Value') your function % do something end if get(handles.radiobutton2,'Value') your function % do something else end if get(handles.radiobutton3,'Value') your function %do someething else end end
0 Kommentare
Ali Noori
am 25 Jun. 2015
To link between push button and radio button, see attached file:
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!