How to set the thickness of edge for one marker in plot?
107 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello, I want to set the thickness of edge for one point use plot. How to plot this?
plot(data(:,1),data(:,2),'o','MarkerSize',5, 'MarkerFaceColor','y','MarkerEdgeColor','b')
;

I want to set the thickness of edge about color blue. Who can help me ?
0 commentaires
Réponse acceptée
millercommamatt
le 26 Juil 2021
The 'LineWidth' Property controls the thickness of the marker edge.
e.g.
plot(data(:,1),data(:,2),'o','MarkerSize',5, 'MarkerFaceColor','y','MarkerEdgeColor','b','LineWidth',2)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!