How do I remove specific markers in scatter plot?
显示 更早的评论
How do I remove specific markers in scatter plot?
Can I do that? I'm working with a scatter3 function.
Thanks.
2 个评论
Andrew Reibold
2014-10-13
Is it a huge amount or just like 1 or 2 for a one time job? Picture/screenshot?
Matthias Witt
2024-1-10
编辑:Matthias Witt
2024-1-11
set a specific point to invisible
point = scatter(x, y, 'rx');
set(point, 'visible', 'off')
回答(1 个)
Sean de Wolski
2014-10-13
0 个投票
You can use data brushing if you want to do it interactively:

类别
在 帮助中心 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!