Plot text box question

3 vues (au cours des 30 derniers jours)
Catherine Mohs
Catherine Mohs le 16 Mai 2019
Commenté : Catherine Mohs le 16 Mai 2019
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=?

Réponse acceptée

Adam Danz
Adam Danz le 16 Mai 2019
Modifié(e) : Adam Danz le 16 Mai 2019
text(0,800,sprintf('n=%d',n) %for integers
text(0,800,sprintf('n=%.3f',pi) %for non-integers (showing 3dp)
  1 commentaire
Catherine Mohs
Catherine Mohs le 16 Mai 2019
Thank you!!!

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by