How to plot smaller o's using plot(x,y,'o')

59 views (last 30 days)
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

Steven Lord
Steven Lord on 14 Jul 2015
Do you really need to plot all 85,000 individual markers and have them visible simultaneously? What fraction of the number of pixels on your screen does each pixel take up? You can check this by querying the ScreenSize property of the groot object.
Setting a MarkerSize of 0.05 means you want each marker to take up 1/20 of a point. A point is 1/72 inch.
If you do need to plot all of them at once, I would change the axes limits to only display a small portion of the plotting region at a time or plot them using '.' as your marker instead of 'o'. Otherwise it's going to be really difficult to interpret your data, like looking at a picture of a desert and hoping to draw conclusions from the appearance of individual grains of sand.
  4 Comments
Cameron Jewell
Cameron Jewell on 14 Jul 2015
I am brand new to MATLAB and this is my very first project. Having experience in Java (almost exclusively), this is entirely fresh. I do not know how an image would be of more use than a plot.
What is an image in the MATLAB syntax, and how is it different than a plot? Would it be more practical? How so? How do I use one?
Cameron Jewell
Cameron Jewell on 14 Jul 2015
Alright guys, I was able to plot using simply plot(x, y, 'black.') as suggested. I decided not to delve into the unfamiliar concept that is an "image." Using 'markersize' ended up not being an easy solution as the dots still were not very small (at least, not small enough).
Thanks for all the help!

Sign in to comment.

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 14 Jul 2015
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!