How to plot smaller o's using plot(x,y,'o')
이전 댓글 표시
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.
채택된 답변
추가 답변 (1개)
Azzi Abdelmalek
2015년 7월 14일
t=0:0.2:10
y=sin(t)
h=plot(t,y,'o','MarkerSize',3),
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!