Plotting 5 different filled markers on one graph

21 views (last 30 days)
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

Accepted Answer

Star Strider
Star Strider on 6 Aug 2022
Edited: Star Strider on 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 Comments
Alice K
Alice K on 6 Aug 2022
Your other code worked. Thank you so much.

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!