Effacer les filtres
Effacer les filtres

How to plot different markers on the same graph based on "if" statement

1 vue (au cours des 30 derniers jours)
Jayden Yeo
Jayden Yeo le 15 Juin 2020
Modifié(e) : Jayden Yeo le 6 Déc 2020
Hi,
I have a table of data as below. Based on "c", I would like to plot X and Y using 2 different markers.
i.e. if c="car", plot the X & Y coordinates using "o" type marker.
if c = "plane", plot the X & Y coordinates using "+" type marker.
My code as below:
if coordinates.c == "car"
plot(coordinates.X,coordinates.Y,"ro")
else
plot(coordinates.X,coordinates.Y,"b+")
end
The codes above is not working. Matlab plots all the X & Y coordinates using the "+" type marker.
Pls advise where is the issue. Thanks in advance

Réponse acceptée

KSSV
KSSV le 15 Juin 2020
figure
hold on
idx = strcmp(c,'air') ;
plot(x(idx),y(idx),'+r')
idx = strcmp(c,'land') ;
plot(x(idx),y(idx),'+b')

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by