Radio button panel prblm
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Matt Fig
2012-11-10
编辑:Matt Fig
2012-11-10
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..
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!