Plotting 5 different filled markers on one graph

33 vues (au cours des 30 derniers jours)
Alice K
Alice K le 6 Août 2022
Commenté : Star Strider le 6 Août 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

Réponse acceptée

Star Strider
Star Strider le 6 Août 2022
Modifié(e) : Star Strider le 6 Août 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 commentaires
Alice K
Alice K le 6 Août 2022
Your other code worked. Thank you so much.
Star Strider
Star Strider le 6 Août 2022
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by