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!