MATLAB: Overlaying a power distribution plot over an image

overlaying figures on images

I am trying to overlay a power distribution plot over an image with axis labels similar to what is shown here, but not successful. I would greatly appreciate help. Thanks in advance.
img = imagesc('image.jpg');
imagesc([min_x max_x], [min_y max_y], img);
hold on;
mesh(angle,distance,power);

Best Answer

In your first line use imread rather than imagesc