Plotting images over a graph in Matlab
Does anyone know how can one plot() a regular 2D plot in Matlab, and dr开发者_JAVA技巧aw little images over that plot?
Thanks for any tips.
Hmmm, my bad, it's all there in the basic Matlab commands:
You do your plot(), call 'hold on', and then call 'image(x,y,img)' to plot that image on top of the existing plot.
:)
精彩评论