MATLAB: How to put a dot at a certain place in the graph.

markerplotset

Hello,
I am wondering how can i place a dot or a marker at a certain point in a graph, for examples at coordinates 7.5 and 100 from my matlab script.
Any help is appreciated. Thank you

Best Answer

plot(7.5,100,'.','MarkerSize',10)
Read about plot, you have many choices for markers.