Engine
Engine

Reputation: 5420

how to replot saved figures in Matlab

I have a MATLAB script in which I saved multiples figures, now I would like to read them again with MATLAB, I tried the function hgload and also imread but it didn't help. any idea this could be done ?

UPDATE

fig = hgload('FRAME.fig');
plot(fig);

Upvotes: 0

Views: 309

Answers (2)

C.Colden
C.Colden

Reputation: 627

You have to use: hgload FRAME.fig

Upvotes: 2

yakoudbz
yakoudbz

Reputation: 903

just do

open FRAME.fig

it will open the figure as if it was plotted

Upvotes: 2

Related Questions