Change name of figures in figures Tab

298 ビュー (過去 30 日間)
fedevento
fedevento 2019 年 7 月 15 日
コメント済み: Daniel Amare 2021 年 10 月 9 日
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')
  2 件のコメント
fedevento
fedevento 2019 年 7 月 15 日
Thanks a lot Adam!
f
Daniel Amare
Daniel Amare 2021 年 10 月 9 日
DONE!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by