MATLAB: Place down error underneath text string

annotation;arrowposition;text;

Hi all,
to place a down arrow for a text annotation in a plot I can use…
text(0.5,0.5,'\downarrow mytext')
..which puts the arrow to the left of the text or…
text(0.5,0.5,'mytext \downarrow')
which put the error to the right of the text.
What is the code for placing the down arrow underneath the text string?

Best Answer

'$\stackrel{mytext}{\downarrow}$'
with 'interpreter', 'latex'