Plot text box question

2 次查看(过去 30 天)
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)

更多回答(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