Finding annotation location dynamically?

2 次查看(过去 30 天)
I am creating plots similar to one below
A numeric is written next to each curve that shows an iteration. In my plot,I am adding these numbers using annotation(.) but I have to adjust their position manually? Is it possible that This can be done dynamically.

采纳的回答

Image Analyst
Image Analyst 2016-4-1
For each curve, get x and y
labelX = x(end) + 0.1;
labelY = y(end);
text(labelX, labelY, string);
Make up string with sprintf() and put whatever you want in it.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by