Como desenhar uma flecha no Matlab?

Estou tentando desenhar uma seta no gráfico matlab, sem nenhum sucesso.

Exemplo de código:

function [ output_args ] = example( input_args )

figure ('Name', 'example');
x = [10 30]
y = [10 30]
xlim([1, 100])
ylim([1, 100])
arrow (x, y) ???
end

Existe alguma função no matlab que possa desenhar seta? obrigado

questionAnswers(5)

yourAnswerToTheQuestion