MATLAB: Setting position of Annotation on an axes component

annotation;axesMATLAB

Hello, I am trying to add an annotation (textbox) to a plot that is on an axes component (Im using GUIDE). I understand you cannot set as a container the axes component so thought I could just get the x,y, coordinates of the axes.
axes(handles.axes1);
p=get(handles.axes1,'Position')
dim = [p(1) p(2) .3 .3];
str = ['Max dist (+/-0.1mm) = ',num2str(mxdist11,'%.4f')];
ann=annotation('textbox',dim,'String',str,'FitBoxToText','on', 'BackgroundColor','#FEBEAD');
But its not showing in the correct location
Surely this should be in one of the corners?
My aim is to get it in the top right corner.
thanks for any help

Best Answer

Hi Jason,
When you get the position of an axes, the first and second index are the start location of your axes in the x and y dimensions, respectively. The third and fourth index is the width and height of the axes. Try typing this into just the command window, in turn:
ax=axes;
p=get(ax,'Position')
It will probably give you something like
p =
0.1300 0.1100 0.7750 0.8150
(this is for my screen). It means that the x axis starts 0,13 of the way in, from the very leftmost part of the figure, and it then proceeds a further 0,775 whereupon it stops.
So what you want is for the x location of your textbox to be your axes start point, p(1), plus your axes width, p(3), minus the width of your text box. How to get that width? Well you have your ann handle, so ann.Position gives you the width (and height) - again in the 3rd and 4th index.
On my screen resolution this gives a textbox in the top right.
(mind you I hardset axes limits and the string, since I obviously dont have the variables you do :)
ax=axes;
p=get(ax,'Position');
%
w=0.3518;
h=0.0643;
dim = [(p(1)+p(3)-w) (p(2)+p(4)-h) w h];
str = ['Max dist (+/-0.1mm) = 0.7203'];
xlim([-0.8 0.8]);
ylim([-3 5]);
ann=annotation('textbox',dim,'String',str);