Plotting points as circle

45 次查看(过去 30 天)
Marija
Marija 2011-6-16
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
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
Sean de Wolski 2011-6-16
plot(2,3,'ko','markerfacecolor','k')

Marija
Marija 2011-6-16
Thank you.

类别

Help CenterFile 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!

Translated by