Plotting points as circle
이전 댓글 표시
Hello, how can I plot a point as a black filled circle, rather than a star as with impoint. Thank you very much.
답변 (3개)
K
2011년 6월 16일
h = impoint
hc = get(h,'Children')
set(hc(1),'Visible','off')
set(hc(2),'MarkerFaceColor','k')
set(hc(2),'MarkerEdgeColor','k')
Sean de Wolski
2011년 6월 16일
plot(2,3,'ko','markerfacecolor','k')
카테고리
도움말 센터 및 File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!