Different coloured markers based on values
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ahmed Abdulla
le 8 Juin 2020
Réponse apportée : KSSV
le 8 Juin 2020
I have values to be plotted that range from 0 to 0.1 and i would like the markers of the values less than 0.05 be box markers filled in black, while the ones larger than 0.05 only have a highlighted black border. Is there a way without seperating the values into two seperate matrices and plotting them individually?
0 commentaires
Réponse acceptée
Adam Danz
le 8 Juin 2020
Use indexing. Create a logical array the same size as your data that identifies values < 0.05.
idx = x < 0.05;
Then you can plot the two populations of data separately.
plot(x(idx), 'ks','MarkerFaceColor', 'k');
hold on
plot(x(~idx), 'ks')
0 commentaires
Plus de réponses (1)
KSSV
le 8 Juin 2020
YOu have to use logical indexing. USe ineualities and plot them.
figure
hold on
plot(x(y<0.05),y(y<0.05),'sr')
plot(x(y>=0.05),y(y>=0.05),'ob')
0 commentaires
Voir également
Catégories
En savoir plus sur Line 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!