How to mark a point on scatter plot obtained using gscatter?

조회 수: 6 (최근 30일)
Tmat
Tmat 2022년 5월 16일
댓글: KALYAN ACHARJYA 2022년 6월 14일
I just obtained a scatter plot using gscatter(x,y), where x and y are both data vectors with size 100. Among these 100 points, a point (x*,y*)=(50,50.5) have some particular meaning and I want to highlight this point with a different point style or color. How could I do it?
Thanks!

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 5월 16일
편집: KALYAN ACHARJYA 2022년 5월 16일
Yes you can specify that, see my example (Just for understanding)
x=randi(100,[1,50]);
y=randi(100,[1,50]);
gscatter(x,y);
hold on;
%....................... Group,color,marker,marker size
gscatter(x(1,25),y(1,25),2,'r','x',[10,15]);
  댓글 수: 4
Tmat
Tmat 2022년 5월 22일
@KALYAN ACHARJYA Hi KALYAN, another question: what does x(1,25),y(1,25) mean?
KALYAN ACHARJYA
KALYAN ACHARJYA 2022년 6월 14일
Specifying particular index points.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by