Home > Back-end >  Matlab show two fig files in one plot
Matlab show two fig files in one plot

Time:10-21

I am trying to show two fig. files in one plot but it seems harder then expected. How can this be achieved?

Lets say I have two figs.

fig1 = openfig("someFig1.fig");
fig2 = openfig("someFig2.fig");

CodePudding user response:

If you want to display them in the same plot, you can use enter image description here

  • Related