Change name of figures in figures Tab
292 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
fedevento
el 15 de Jul. de 2019
Comentada: Daniel Amare
el 9 de Oct. de 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!!!

0 comentarios
Respuesta aceptada
Adam Danz
el 15 de Jul. de 2019
Editada: Adam Danz
el 15 de Jul. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!