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!