how do i execute file under radio button only when i press start button
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
nida
am 15 Apr. 2014
Beantwortet: Image Analyst
am 15 Apr. 2014
i have 3 radio buttons with 3 different files i want to select one of them without executing that file, then when i press start button iwant that file to execute.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 15 Apr. 2014
In the callback for the "Start" push button:
if get(handles.radioButton1, 'Value')
% Run function #1
function1;
elseif get(handles.radioButton2, 'Value')
% Run function #2
function2;
else
% Run function #3
function3;
end
You don't need anything in the callback of the radiobuttons or their group.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks 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!