Specify annotation position with respect to x- and y-axes values?

319 ビュー (過去 30 日間)
Clemens
Clemens 2016 年 11 月 5 日
コメント済み: Star Strider 2024 年 11 月 12 日 12:02
Dear all,
Is there a way the define the starting and end point of an annotation object such as an arrow in terms of the data being plotted and not as either "normalized" coordinates (x- and y-positions between 0 and 1) or a physical length measurement such as cm?
E.g. I am plotting a time from 0 to 180 s on the x-axis and a concentration between 0 and 0.1 concentration units on the y-axis. Now I would like to draw an arrow starting at 90 s, 0.04 concentration units and going to 120 s, 0.09 concentration units.
I have already considered to simply "normalize" those positions myself (e.g. 90 s/180 s = 0.5 --> x-position in normalized coordinates). This does, however, not work, since 0 and 1 refer to points in the whole figure (the window in which the plot appears) and not to the area of the plot itself.
Thanks for any input! Clemens
  1 件のコメント
Clemens
Clemens 2016 年 11 月 5 日
Here's a quick illustration of what I mean. I simply drew the arrow by hand. If I get Matlab to show me the code for it, it gives
annotation(figure1,'arrow',[0.354235423542354 0.224422442244224],...
[0.526863777089783 0.390092879256966]);
but the end point's x-coordinate (0.2244...) does not correspond to the 20 s (20 s / 180 s = 0.1111...) where 180 s is the "length" of my x-axis in the units that I want to plot. 

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

採用された回答

Star Strider
Star Strider 2016 年 11 月 5 日
You need to access the 'Position' property of the figure object you’re using. It gives the left lower corner coordinates and the width and height values. With a few lines of code, you can normalise your arrow object positions with respect to them. See the documentation on Axes Properties for details.
Then, experiment! This will keep you intensely occupied for a few minutes!
  5 件のコメント
Star Strider
Star Strider 2017 年 9 月 20 日
More information would be helpful, as would more illustrative example code, since we don’t know what you’re doing, and providing a context is always appropriate. I assume ‘x_data’ is your independent variable vector. Also, is this robust to ‘x_data’ having negative values?
Unrelated
‘DrBones’ — Ortho? B/C IM here!
Star Strider
Star Strider 2024 年 11 月 12 日 12:02
In the inteiriim (early 2023), I came up with my own solution —
% define domain and function
x = linspace(-10, 10, 100);
sigma = 3;
gaussian = exp(-x.^2/(2*sigma^2));
% plot the function and some labels
figure
plot(x, gaussian)
hold on
xlabel('x')
ylabel('y')
HM = 0.5 % Half of maximum
HM = 0.5000
HWHM = 3.53 % Half width at half maximum
HWHM = 3.5300
pos = get(gca, 'Position');
% Positins for the end of the Arrow in data units.
xPosition = 2;
yPosition = 0.3;
Start = [-8, 0.5]; % x, y
End = [4, 0.1]; % x , y
xapf = @(x,pos,xl) pos(3)*(x-min(xl))/diff(xl)+pos(1); % 'x' Annotation Position Function
yapf = @(y,pos,yl) pos(4)*(y-min(yl))/diff(yl)+pos(2); % 'y' Annotation Position Function
xl = xlim;
yl = ylim;
pos = gca().Position;
annotation('line', xapf([Start(1) End(1)],pos,xl), yapf([Start(2) End(2)],pos,yl))
annotation('textarrow', xapf([xPosition HWHM],pos,xl), yapf([yPosition HM],pos,yl), String=sprintf('HWHM = %.2f',HWHM))
.

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

その他の回答 (2 件)

Jorg Woehl
Jorg Woehl 2021 年 3 月 1 日
編集済み: Jorg Woehl 2021 年 3 月 1 日
この 回答 は Qiang Li さんによってフラグが設定されました
This is an older post, but the following is perhaps useful to others:
If horizontal arrows are ok, data units can be used by associating the annotation with the current axes:
hf = figure;
x = 0:180; f = @(x) 0.09*exp(-x/18);
plot(x, f(x));
ha = annotation('arrow');
ha.Parent = hf.CurrentAxes; % associate annotation with current axes
% now you can use data units
ha.X = [50 20];
ha.Y = [f(20) f(20)];
This also works for other annotation types and even if they don't have a horizontal orientation. (Arrows and doublearrows are an exception because the arrowheads will not align properly.)
Otherwise, there is also the excellent coord2norm function on File Exchange that converts data units to normalized units.
  10 件のコメント
Swaroop
Swaroop 2022 年 11 月 8 日
Thank you very much!
Francisco Diaz
Francisco Diaz 2024 年 11 月 12 日 10:15
Thank you very much

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


DGM
DGM 2021 年 8 月 15 日
As a spin off @Jorg Woehl's suggestion, I'll offer my own.
I think it's worth pointing out that these solutions tend to be version-dependent -- at least dependent on whether we're post-R2014b or not. Obviously, we can't manipulate properties of annotation objects using dot notation in legacy versions, but even using get/set to move the annotation tends to result in it being drawn in unexpected ways.
But precalculating the position and specifying it when creating the annotation works fine from R2009b to R2019b:
clf
x = 0:180; f = @(x) 0.09*exp(-x/18);
plot(x, f(x));
[xx yy] = datc2figc([50 20],[f(20) f(20)]);
annotation('arrow',xx,yy);
I used the attached file for coordinate conversion, but I doubt it's much different than coord2norm().
  3 件のコメント
Marc Compere
Marc Compere 2021 年 8 月 15 日
it's bizarre that data coordinates are not built into Matlab directly. Its the single most straightforward use for an arrow annotation.
DGM
DGM 2021 年 8 月 15 日
datc2figc() was really just an ad-hoc thing I threw together in frustration. I'm sure there's better stuff out there.

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

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by