Automatically Position Text Annotations on a plot.

I am plotting many different plots in a for loop.
Is there any way to automatically position my text in the top right corner of the plot in all of the plots?
text('location','northeast','string1')
The line above does not seem to work.
Any ideas?

 Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 23 Jan. 2013

6 Stimmen

ylim=get(gca,'ylim');
xlim=get(gca,'xlim')
text(xlim(1),ylim(2),'yourtext')

2 Kommentare

Nathaniel
Nathaniel am 23 Jan. 2013
thanks for you input!
can we avoid overlapping of text

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by