How to plot smaller o's using plot(x,y,'o')
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 14 Juil 2015
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!