Thank you.
Giora.
> Is there a way to make the plot Graph to show a small picture that I choose instead of
> the dots, lines or stars itc. that Matlab gives me?
No. The marker shapes are hard-coded and you cannot add new ones. If you want a custom
marker, then at each point you want the marker, you will have to use line() or
equivalent to draw the marker or image() or equivalent to draw in an image. If you take
this approach you will need to study the zoom() callbacks: if your user zooms the image
then Matlab markers stay the same size but anything you had manually added in as a marker
would get zoomed so you would have to remove the markers and re-draw them in the
appropriate positions in the zoomed image.