MATLAB: How to manipulate new point on graph

manipultaenew pointplot

i want to add new point to my graph, so it will appear much pretty. thx

Best Answer

hold your figure by following command.
hold on;
then add point.
plot(x,y);