Change name of figures in figures Tab

조회 수: 304 (최근 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 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