How to plot smaller o's using plot(x,y,'o')
显示 更早的评论
I need to plot data points from a matrix using plot(x, y, 'o'), but the o's being plotted take up far too much space (the number of data points being plotted and displayed is +85000).
Can I use plot(x, y, 'o', 'markersize', 0.05) or something like that? Changing 'Linewidth' does not help.
采纳的回答
更多回答(1 个)
Azzi Abdelmalek
2015-7-14
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!