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.

Answers (3)

K
K on 16 Jun 2011
h = impoint
hc = get(h,'Children')
set(hc(1),'Visible','off')
set(hc(2),'MarkerFaceColor','k')
set(hc(2),'MarkerEdgeColor','k')

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Asked:

on 16 Jun 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!