Radio button panel prblm
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a radio button group. In that one button is automatically selected. I want nothing should be selected. How can i do that thanks
3 Kommentare
Akzeptierte Antwort
Matt Fig
am 10 Nov. 2012
Bearbeitet: Matt Fig
am 10 Nov. 2012
In your Least_Sqaure_Optimization_OpeningFcn put this:
set(handles.uipanel1,'SelectedObject',[])
Where uipanel1 is the name of the buttongroup. If you don't know the required name, first open your GUI then do this:
H = findall(0,'type','uipanel')
get(H,'tag') % The name is in here..
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps 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!