I have created an uipanel in Matlab and placed some uicontrols on it. How can I access those uicontrols when I copy the panel?
Example:
panel_a=uipanel(figure);
editfield=uicontrol(panel_a, 'style','edit');
x=uitab(tabgroup);
panel_b=copyobj(panel_a,x);
tmp=panel_b.editfield.String; <-- how do I write this?
How is editfield
of panel_b
accessed?