Add text to loglog-plot?

조회 수: 8 (최근 30일)
Martin
Martin 2018년 3월 1일
댓글: Walter Roberson 2021년 8월 11일
Hi,
I'm trying to add text to a loglog-plot (a number above a plotted line, denoting a quantity), but I can't get the text-command to work. Is it at all possible or does it only work for non-loglog plots?
Best Regards Martin
  댓글 수: 1
Stefan Damjancevic
Stefan Damjancevic 2021년 8월 11일
Have you solved this issue. It is really bothersome.

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2018년 3월 1일
It works for me.
x = 1 : 100;
y = rand(1,100);
loglog(x, y);
text(20,.5, 'hello')
The text does appear and does get placed at data coordinates (20,.5)
  댓글 수: 4
Stefan Damjancevic
Stefan Damjancevic 2021년 8월 11일
printing text is not the problem, position of the text is the problem. Due to log-log scale alliging the text several inches to the right of the data points is not as straight forward as text(xData+10, yData, 'text'). Namely the if the xData is close to >1 then the shift to right is large, but if the data is close to <10 then the shift to right is small i.e. the shift to the right in the figure is not consistent to human eyes.
Walter Roberson
Walter Roberson 2021년 8월 11일
Good point. However the original person was getting no text at all.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by