How can I easily mark data points in a plot?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I would like to mark significant data points in a plot with an asterisk.
Is there an easy way to do that or do I have to use "text()" and manually shift the asterisk to a position next to the data point?
1 Kommentar
Sara
am 18 Jul. 2014
Can't you just replot them? You can use
hold on
plot(x,y,'*')
where x,y are ONLY the significant points.
Antworten (1)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!