Using dynamic subscripts in plot title

23 vues (au cours des 30 derniers jours)
Earl
Earl le 15 Avr 2012
I want to use subscripts in a plot title, but the value I want to use changes, depending on the subplot. E.g. If I have 3 subplots (varies) then I want the first plot's title to look like:
title('x_1')
and the second to be:
title('x_2')
etc. I have the value for the subscript in a variable, say i, but how do I set this as a subscript? If I try:
title('x_i')
MatLab interprets the 'i' literally of course. What is the correct way?

Réponse acceptée

Walter Roberson
Walter Roberson le 15 Avr 2012
title(sprintf('x_%d', i))
  2 commentaires
Earl
Earl le 15 Avr 2012
Thank you!
Carlos A. Morales Rergis
Carlos A. Morales Rergis le 18 Fév 2014
Modifié(e) : Carlos A. Morales Rergis le 18 Fév 2014
Hello, I have a question:
What happens when i > 9?
How to insert subscript two or three symbols?
e.g:
title(' x_1_2 ')
Thank you a lot!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by