MATLAB: Figure

figure

if i plot point(x) in a graph how can i remove it from graph

Best Answer

plot(randn(100,1));
hold on;
h = plot(5,3.5,'k*');
%%%then
reset(h)
Related Question