How can I introduce a variable in a plot using text?

조회 수: 16 (최근 30일)
L
L 2018년 7월 11일
댓글: L 2018년 7월 12일
Hello,
I am trying to make some text appear to the right of my plot and in that text there is a variable that changes depending on the numbers.
For example:
x = 1:0.5:5;
y = 5;
m = 15.35;
plot(x,y*ones(size(x)),'r','LineWidth',2)
text(5,5,'\leftarrow' num2str(m)'s','r','FontSize',10);
But it isn't working. I want the text to appear to the right of the horizontal line. I've looked up and down the internet but can't seem to find out how to do this for text.
Thank you!

채택된 답변

dpb
dpb 2018년 7월 11일
Need to fix the syntax errors, first in the string and then in text...
text(5,5,['\leftarrow' num2str(m)],'color','r','FontSize',10);
You might also check out
doc annotation
  댓글 수: 1
L
L 2018년 7월 12일
Thank you dpb! I also appreciate the referral to the annotation documentation.

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by