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!