Plotting 5 different filled markers on one graph

33 次查看(过去 30 天)
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

采纳的回答

Star Strider
Star Strider 2022-8-6
编辑:Star Strider 2022-8-6
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by