Change name of figures in figures Tab

347 vues (au cours des 30 derniers jours)
fedevento
fedevento le 15 Juil 2019
Commenté : Daniel Amare le 9 Oct 2021
Hello all, i was wandering how to change the name of figures in theFigures tab. Even if i create the figures like
CurvaJV = figure
the name that it displays still "Figure 1" as shown in the picture. Thanks!!!
Untitled2.png

Réponse acceptée

Adam Danz
Adam Danz le 15 Juil 2019
Modifié(e) : Adam Danz le 15 Juil 2019
Name the figure when it's created
CurvaJV = figure('Name','My figure name')
or name the figure after it's created
set(gcf, 'Name', 'My figure name')
If you want to exclude the "figure #" part of the figure name,
CurvaJV = figure('Name','My figure name','NumberTitle','off')
  2 commentaires
fedevento
fedevento le 15 Juil 2019
Thanks a lot Adam!
f
Daniel Amare
Daniel Amare le 9 Oct 2021
DONE!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks 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