How do you place text in same position of 12 subplots?
11 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(4 个)
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')
0 个评论
Image Analyst
2012-6-8
What's wrong with the text() function?
3 个评论
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().
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!