Plotting 5 different filled markers on one graph

21 visualizaciones (últimos 30 días)
Alice K
Alice K el 6 de Ag. de 2022
Comentada: Star Strider el 6 de Ag. de 2022
Hi All,
I need to plot 5 sets of data on a one graph, I can plot the data but I can't not fill the markers. Is there a way to fill the different markers? I don't need the line contecting the points.
3 of the datasets contain 6 points, 1 constains 5 points and 1 contains 7. This is what I have, I need to fill in the markers and change the colours of the markers.
Thanks

Respuesta aceptada

Star Strider
Star Strider el 6 de Ag. de 2022
Editada: Star Strider el 6 de Ag. de 2022
If you don’t need lines connecting the points, use the scatter function. It has a 'filled' option to automatically fill the markers.
x = 1:15;
y = randn(5,15);
figure
scatter(x, y, 'filled')
EDIT — (6 Aug 2022 at 14:44)
Added scatter plot.
.
  6 comentarios
Alice K
Alice K el 6 de Ag. de 2022
Your other code worked. Thank you so much.
Star Strider
Star Strider el 6 de Ag. de 2022
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by