Reputation: 5420
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
Reputation: 903
just do
open FRAME.fig
it will open the figure as if it was plotted
Upvotes: 2