Plotting 5 different filled markers on one graph

조회 수: 33 (최근 30일)
Alice K
Alice K 2022년 8월 6일
댓글: Star Strider 2022년 8월 6일
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
Alice K
Alice K 2022년 8월 6일
Your other code worked. Thank you so much.
Star Strider
Star Strider 2022년 8월 6일
As always, my pleasure!

댓글을 달려면 로그인하십시오.

추가 답변 (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