How do you place text in same position of 12 subplots?
이전 댓글 표시
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
2018년 9월 22일
text( 0.5,0.5,'Hi','Units','Normalized' )
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
2012년 6월 8일
0 개 추천
What's wrong with the text() function?
댓글 수: 3
Walter Roberson
2012년 6월 8일
text() always uses data coordinates, so if the data ranges are not the same it becomes trickier to place things in the same position.
andrew joros
2012년 6월 8일
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().
카테고리
도움말 센터 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!