How to plot smaller o's using plot(x,y,'o')
Show older comments
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.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 14 Jul 2015
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),
Categories
Find more on Mathematics 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!