Plot text box question

조회 수: 3 (최근 30일)
Catherine Mohs
Catherine Mohs 2019년 5월 16일
댓글: Catherine Mohs 2019년 5월 16일
This is what my code looks like. I want to have a textbox that says n=3 on my graph (without actually typing 3 in the code), but I don't remember the syntax for it. Thank you!
x=[1 2 3];
y=[1 2 3];
n=3;
figure
plot(x,y)
text(0,800,'n=') % what do I need to put after the n=?

채택된 답변

Adam Danz
Adam Danz 2019년 5월 16일
편집: Adam Danz 2019년 5월 16일
text(0,800,sprintf('n=%d',n) %for integers
text(0,800,sprintf('n=%.3f',pi) %for non-integers (showing 3dp)
  댓글 수: 1
Catherine Mohs
Catherine Mohs 2019년 5월 16일
Thank you!!!

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

추가 답변 (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