How to impose the size of the marker relative to the axis?
23 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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
0 Kommentare
Antworten (2)
Star Strider
am 10 Dez. 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 Kommentare
Star Strider
am 10 Dez. 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.
matt dash
am 10 Dez. 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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Graphics Performance finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!