How do you place text in same position of 12 subplots?

12 ビュー (過去 30 日間)
andrew joros
andrew joros 2012 年 6 月 8 日
回答済み: Sanjay Manohar 2018 年 9 月 22 日
I am trying to place some text in the same position of 12 subplots (4x3). How can this be done? I have googled with no luck :(
Thanks

回答 (4 件)

Sanjay Manohar
Sanjay Manohar 2018 年 9 月 22 日
text( 0.5,0.5,'Hi','Units','Normalized' )

Walter Roberson
Walter Roberson 2012 年 6 月 8 日
Suppose RelX and RelY are the relative position at which you want to plot the text, 0 to 1 each, starting from bottom left corner of the inside of the axis. Then, for any one plot,
DataX = interp1( [0 1], xlim(), RelX );
DataY = interp1( [0 1], ylim(), RelY );
text(DataX, DataY, 'Your String')

Image Analyst
Image Analyst 2012 年 6 月 8 日
What's wrong with the text() function?
  3 件のコメント
andrew joros
andrew joros 2012 年 6 月 8 日
When I use text() the placement of the text changes with every subplot which is a scatter-plot in this case. I am trying to make the position absolute (e.g. keep all text in the top-left of each subplot) but I dont know how.
Image Analyst
Image Analyst 2012 年 6 月 8 日
I was thinking that you would have the axes the same every time, like you had called xlim() and ylim().

サインインしてコメントする。


andrew joros
andrew joros 2012 年 6 月 8 日
How do I make the position absolute?

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by