MATLAB: Put picture on axes (automatic picture appear)

picturetable

from the picture, how i can appear the picture at axes 1, axes 2, axes 3 and axes4?? one more thing, for conductor information, there is the invisible table.so when i click the conductor information, how i can connect the selection with the invisible table ??. the size cable will appear when the button calculate is push……

Best Answer

Which control is the "conductor information" that you're clicking on?
You can use image() or imshow() to display an image in the axes
axes(handles.axes1);
image(rgbImage);
Related Question