Does anyone know how can one plot() a regular 2D plot in Matlab,
and draw little images over that plot?
Thanks for any tips.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.
🙂