How can I easily mark data points in a plot?
6 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Sara
2014 年 7 月 18 日
Can't you just replot them? You can use
hold on
plot(x,y,'*')
where x,y are ONLY the significant points.
回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!