How can I set automatically the textarrow position on a graph?
15 次查看(过去 30 天)
显示 更早的评论
I would like to place the top of the arrow in a text-arrow annotation automatically on a plot, taking as reference a specific point of a line
0 个评论
回答(2 个)
Oleg Komarov
2013-2-20
编辑:Oleg Komarov
2013-2-20
You will find this utility very useful: http://www.mathworks.co.uk/matlabcentral/fileexchange/10656-data-space-to-figure-units-conversion
plot(1:10);
% tail
[xt yt] = ds2nfu(3, 6);
% head
[xh yh] = ds2nfu(5, 5);
a = annotation('textarrow', [xt xh],[yt yh], 'String' , 'Straight Line');
0 个评论
Azzi Abdelmalek
2013-2-20
编辑:Azzi Abdelmalek
2013-2-20
annotation('textarrow',[x0,x1],[y0,y1],'String',yourtext);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!