How to save a fig file and re-open it with the same figure number?

1 visualización (últimos 30 días)
Very simple question which I cannot find a simple answer to:
If I save a figure with a particular figure number as a *.fig file, is there a way to keep that figure number information when reopening the figure using openfig?
Example:
f = figure(1000);
fNumber= f.Number; %result = 1000
savefig(f,'figure1000.fig')
close(f)
clearvars
g = openfig('figure1000.fig');
gNumber = g.Number; %result = 1
This example results in fNumber = 1000 and gNumber = 1. When I save a figure, I want MATLAB to be able to open the figure exactly as it was, including the figure number. Might be missing something obvious here...
Any help is appreciated.

Respuesta aceptada

Eric Delgado
Eric Delgado el 5 de Oct. de 2022
Try this!
f = figure(1000);
ax = axes(f);
plot(ax, randn(1001, 1)) % Let's create some data visualization!
savefig(f,'figure1000.fig')
close(f)
clearvars
g = openfig('figure1000.fig', 'invisible');
h = figure(1000);
copyobj(g.Children, h)

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by