matlab - How to specify which axes to plot in a GUI -
i new gui. have 2 axes in guide gui , wish specify 1 plot figure, can't find handles.axe1 anywhere. can me this?
since built gui guide can access tag property of each axes in property inspector.
once know tag of each axes, can choose plot stuff using first argument of plot:
plot(tagofaxes,x,y) or using imshow, using parent property:
imshow(yourimage,'parent',tagofaxes) and on.
Comments
Post a Comment