This should be a problem with a trivial solution, but still I wasn't able to find one.
Say that I have 2 matlab figures fig1.fig
, fig2.fig
which I want to load and show in the same plotting window.
What should I do?
I mean, I am pretty sure that I can accomplish the task using some low(er) level graphic command which extracts contents from one image and put them in the second one, nonetheless I cannot believe that there is not any high level function (load fig2 on top of fig1
) that does this...Comparing 2 plots (unfortunately already saved) is a very common task, I'd say.
.fig
files are already there; they are produced by different codes whose results I want to compare. They take a while to run, more than figuring out a way to manipulate graphics. :( – Convertiteplot(x,f1(x));hold on;plot(x,f2(x));
, (possibly changing the style of lines). Now I just need to show them, thus no numerical comparison is needed. I understand that if I needed numerical comparison Re-running the simulations would have been necessary. – Convertite