How to impose the size of the marker relative to the axis?

11 views (last 30 days)
Hello everybody,
I'm simulating the behavior of the particle in a flow. I want to plot my particles uning plot(x,y,'o') and I want that the radius of the o is the radius of the particle.
Can you help me? Thanks, Luca

Answers (2)

Star Strider
Star Strider on 10 Dec 2014
See Specify Line Width, Marker Size, and Marker Color in the documentation for plot to change the size of the marker (the 'o' in your plot call).
  2 Comments
Luca
Luca on 10 Dec 2014
I know how to use 'markersize', but I don't understand what means the size that I impose. I want to impose the diameter of the particles (of the 'o') in relationship with the axis.
Star Strider
Star Strider on 10 Dec 2014
The default units for markers, lines, and other such are ‘points’ (1 pt = 0.35278 mm). (In R2014b this is fixed, but in previous versions it was possible to specify different units, if I remember correctly.) You can specify the units in Figure Properties, so that would probably carry over to the size units of your markers, but I haven’t experimented with that so I can’t say for sure.
You may have to do your plotting in a loop using the hold function, plotting each point individually in each iteration and changing the marker size individually according to the relation you define. I doubt there is any other way to do it.

Sign in to comment.


matt dash
matt dash on 10 Dec 2014
The plot markers really arent intended to function with that level of precision. The best way to accomplish what you want is to create circular patches, or use the rectangle function and set the roundness to make it a circle. Only these options ensure that your marker radius stays correct if e.g. your axis limits change or are zoomed.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!