Plotting points as circle
Mostra commenti meno recenti
Hello, how can I plot a point as a black filled circle, rather than a star as with impoint. Thank you very much.
Risposte (3)
K
il 16 Giu 2011
h = impoint
hc = get(h,'Children')
set(hc(1),'Visible','off')
set(hc(2),'MarkerFaceColor','k')
set(hc(2),'MarkerEdgeColor','k')
Sean de Wolski
il 16 Giu 2011
plot(2,3,'ko','markerfacecolor','k')
Marija
il 16 Giu 2011
0 voti
Categorie
Scopri di più su 2-D and 3-D Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!