Is it possible to show the result of the first .m file (graph) at the same grid of the graph resulted from another .m file? I don't want subplot function, I want the two graphs on the same grid (Same origin 0)
Asked
Active
Viewed 93 times
0
-
2Yes, call `hold on` after you plot your first plot and all additional plots will appear on the same `axes`. Be sure to *not* open a new figure between plots. – Suever Jun 17 '16 at 23:28
-
1Possible duplicate of [MATLAB - Multiple plots](http://stackoverflow.com/questions/8772947/matlab-multiple-plots) – Suever Jun 17 '16 at 23:51