How can I easily mark data points in a plot?

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

Can't you just replot them? You can use
hold on
plot(x,y,'*')
where x,y are ONLY the significant points.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Chad Greene
Chad Greene am 10 Aug. 2014

1 Stimme

Sara's solution seems valid, as does your suggestion of text. Consider also annotation or label.

Gefragt:

am 18 Jul. 2014

Beantwortet:

am 10 Aug. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by