% en-/disabling a group of uicontrols tdclient_ui.SetGroupEnabled('NoLabel', 'off'); % hide a group of controls (as an example, the figure lacks the group!) tdclient_ui.SetGroupVisible('Output', 'off'); % setting the first of a group of radio buttons to be selected tdclient_ui.RadioGroupSetOne('SType', 1); % "slide" a group of controls to a different position (X: -40, Y: +120) tdclient_ui.SlideGroupXY('Inputs', [-40, 120]); % delete (close) the figure tdclient_ui.Delete;