MATLAB: Toggling a radio button when switching popup menu options

guipopup menuradio button

What I'm looking to do is when a user selects a different option on the popup menu in my GUI, I can tell the radio buttons I have whether they need to be toggled on or off for the new option. Does that make sense?

Best Answer

This will be done in the same way as editting the strings in your previous questions. You will have to get() the information you want, process it, and then set() other components based on this. For radio buttons the property to toggle it is its 'value' property.