How do I display a figure from another section again?

조회 수: 11 (최근 30일)
Mareike Fischer
Mareike Fischer 2021년 11월 17일
댓글: Mareike Fischer 2021년 11월 24일
Hi!
I gernerated a figure in an early section. In the next sections I calculate some values and store those in a table.
In the last section want to display the figure and the table in the output of my live script. But I don't know how to call up again the figure. Gcf only shows the properties.
My acutal goal is to publish that last section as a pdf to have a report of my results (figure & table)
Thanks in advance

채택된 답변

Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya 2021년 11월 24일
Hi,
Essentailly, you want to display a figure which you had previously created in a different section again. You can use the savefig and openfig functions to do so. Refer to the code snippet below
%section 1
x = linspace(0,10);
y = sin(x);
plot(x,y)
title('Sine Wave')
xlabel('x ranges from 0 to 10')
ylabel('y = sin(x)')
savefig('SineWave.fig')
%section 2
openfig('SineWave.fig');
Ensure you don't forget the semicolon after openfig because it would otherwise show the figure properties;
Refer to the documetation below
  댓글 수: 1
Mareike Fischer
Mareike Fischer 2021년 11월 24일
Thank you very much!
In the meantime I startet using the report generator, however your answer might be helpful for other users.

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by