MATLAB: Radio button panel prblm

buttonguiradioradiobutton

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

Best Answer

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..
Related Question