필터 지우기
필터 지우기

Change plot title of saved figure

조회 수: 29 (최근 30일)
DraUX
DraUX 2023년 9월 21일
댓글: DraUX 2023년 9월 21일
Is there a way to edit the title of a plot after saving and reloading the figure? I created a lot of figures with a tiledlayout and after saving them I realised I have to change the title. I can't find a way to edit that in the properties editor, neither do I know how to edit it by code.
At the moment I am trying that
myfig = openfig("name_of_my_fig.fig");
title(myfig,"pls_change_the_title")
The blue marked title is what I want to change.

답변 (1개)

Pratyush
Pratyush 2023년 9월 21일
Hi @DraUX,
I understand that you want to update the title of a figure after saving it.
You can follow these steps:
myfig = openfig("name_of_my_fig.fig");
% Access the axes of the figure using the 'gca' function:
ax = gca;
% Modify the title of the plot using the 'title' function:
title(ax, 'New Title');
% Optionally, you can update the figure to reflect the changes:
drawnow;
% If you want to save the modified figure with the new title, you can use the savefig function again:
savefig('myfigure_modified.fig');
  댓글 수: 3
Dyuman Joshi
Dyuman Joshi 2023년 9월 21일
@DraUX Can you attach the figure here? Use the paperclip button to attach.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by