Can anyone please explain the syntax and purpose of plot() function?

8 visualizaciones (últimos 30 días)
I need to know if I can plot some (x,y) coordinate points on a .png file, for this purpose I need to know the proper syntax and usage of plot().
  4 comentarios
dpb
dpb el 23 de En. de 2015
How do you plot on a file is the question?
If you really mean on a displayed image, then as the other respondent answered, you've simply got to scale to the image coordinates what it is that you wish to plot and have at it...

Iniciar sesión para comentar.

Respuesta aceptada

Chad Greene
Chad Greene el 22 de En. de 2015
If you're trying to plot x,y data on an image, you can do this:
imshow('coins.png')
hold on
plot(1:300,linspace(1,20,300).^2)
where units plotted by plot are in pixels. Or your x,y data have some units other than pixels, you'll have to figure out the right arrays of xdata and ydata corresponding to pixels in the image. Then you can specify 'xdata',xarray,'ydata',yarray when you call imshow.

Más respuestas (0)

Categorías

Más información sobre Annotations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by