Effacer les filtres
Effacer les filtres

How to orient a text arrow

26 vues (au cours des 30 derniers jours)
Alex
Alex le 24 Jan 2017
Commenté : Alex le 24 Jan 2017
Hello,
I am making a figure and added the x, y, z axes with labels for positve/negative x, y, and z using text(x,y,z,'leftarrow'). It looks good for the z-axis, but needs to be rotated for the xa and y axes. Is there a way to make an arrow that goes up and to the left (i.e. does something like 'leftuparrow' exist)?

Réponse acceptée

John Chilleri
John Chilleri le 24 Jan 2017
Modifié(e) : John Chilleri le 24 Jan 2017
Hello,
You can specify the start and end of the arrow, as well as the type of arrow using an annotation.
It'll look something like:
x = [.2 .6];
y = [.1 .5];
annotation('textarrow',x,y)
which draws a text arrow from the point (.2*x axis range, .1*y axis range) to (.6*x axis range, .5*y axis range).
Hope this helps!
  1 commentaire
Alex
Alex le 24 Jan 2017
Perfect, thank you!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by