Change name of figures in figures Tab

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

采纳的回答

Adam Danz
Adam Danz 2019-7-15
编辑:Adam Danz 2019-7-15
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')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by