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

4 vues (au cours des 30 derniers jours)
Tmat
Tmat le 16 Mai 2022
Commenté : KALYAN ACHARJYA le 14 Juin 2022
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!

Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 16 Mai 2022
Modifié(e) : KALYAN ACHARJYA le 16 Mai 2022
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 commentaires
Tmat
Tmat le 22 Mai 2022
@KALYAN ACHARJYA Hi KALYAN, another question: what does x(1,25),y(1,25) mean?
KALYAN ACHARJYA
KALYAN ACHARJYA le 14 Juin 2022
Specifying particular index points.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scatter Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by