text box for 'xline' function?

11 ビュー (過去 30 日間)
Fercho_Sala
Fercho_Sala 2021 年 6 月 2 日
コメント済み: Scott MacKenzie 2021 年 6 月 2 日
Hello, (probably this is an easy question) using the function ‘xline’ in order to represent a statistical value, how can I add a text box with its respective value pointing with an arrow the middle of the line? Thanks.

採用された回答

Scott MacKenzie
Scott MacKenzie 2021 年 6 月 2 日
編集済み: Scott MacKenzie 2021 年 6 月 2 日
There are a few ways to do this. With annotation, it's easy to combine an arrow with a text box. The downside is you have to use normalized coordinates, rather than data coordinates:
ax = gca;
xValue = 5;
axis([0, 10, 0, 10]);
xline(xValue);
x2 = xValue / ax.XLim(2) * ax.Position(3) + ax.Position(1);
x1 = x2 - 0.1; % on left side of line
y2 = .5; % middle of line in y-axis
y1 = .5; % middle of line in y-axis
annotation('textarrow', [x1 x2], [y1 y2], 'String', sprintf('x = %d ', xValue));
  3 件のコメント
Rik
Rik 2021 年 6 月 2 日
編集済み: Rik 2021 年 6 月 2 日
You only need to adapt the x coordinates based on the xValue:
xValue=5;
axis([0, 10, 0, 10]);
[-0.1 .02]+(xValue-min(xlim))/diff(xlim)
ans = 1×2
0.4000 0.5200
Scott MacKenzie
Scott MacKenzie 2021 年 6 月 2 日
I tweaked the answer "without knowing the coordinates". Of course, there will be issues if the x value is close to the left side of the plot. You can add some logic, if you wish, to position the text box and arrow on the right or left side of the line depending on the value of x.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by