I know there is a function named annotation can plot arrows or double arrows. But annotation can only plot in normalized unit. For example:
annotation(\'arro
After creating the annotation object you should set the property Units to an absolute one. Example:
arrowObj = annotation('arrow', [0.1 0.1], [0.5 0.5]); set(arrowObj, 'Units', 'centimeters'); set(arrowObj, 'Position', [1 1 3 5]);