MATLAB: How to set text size in axes units

axesplotsetsize;text;unit

I have a plot with ylim [0,1] and I would like to use put a text on the plot with text height 0.1 in y-units. It is possible to set the heigh in y-units?

Best Answer

set(text_handle,'FontUnits','normalized')
See
doc text % text properties for further details...