How to plot smaller o's using plot(x,y,'o')
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 14 de Jul. de 2015
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!