MATLAB: Store value of selected radio button from group button

button groupgroup radio buttonsguistore

i want get the value of selected radio button from button group i use this code:
u=get(handles.uipanel12,'SelectedObject');
but this code get me a number while the object is a string.(name and tag of radio button)
can u help me?
thanks

Best Answer

u = get(get(handles.uipanel12,'SelectedObject'), 'Value');