How to set the thickness of edge for one marker in plot?

181 visualizaciones (últimos 30 días)
z cy
z cy el 26 de Jul. de 2021
Comentada: z cy el 27 de Jul. de 2021
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 ?

Respuesta aceptada

millercommamatt
millercommamatt el 26 de Jul. de 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)

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by