How do I display a figure from another section again?

10 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Alamanda Ponappa Poovaya
Alamanda Ponappa Poovaya el 24 de Nov. de 2021
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 comentario
Mareike Fischer
Mareike Fischer el 24 de Nov. de 2021
Thank you very much!
In the meantime I startet using the report generator, however your answer might be helpful for other users.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by