Plotting 5 different filled markers on one graph

34 Ansichten (letzte 30 Tage)
Alice K
Alice K am 6 Aug. 2022
Kommentiert: Star Strider am 6 Aug. 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

Akzeptierte Antwort

Star Strider
Star Strider am 6 Aug. 2022
Bearbeitet: Star Strider am 6 Aug. 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 Kommentare
Alice K
Alice K am 6 Aug. 2022
Your other code worked. Thank you so much.
Star Strider
Star Strider am 6 Aug. 2022
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by