figure
2 views (last 30 days)
Show older comments
if i plot point(x) in a graph how can i remove it from graph
0 Comments
Accepted Answer
Wayne King
on 25 Mar 2012
plot(randn(100,1));
hold on;
h = plot(5,3.5,'k*');
%%%then
reset(h)
3 Comments
More Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!