MATLAB: How to plot two figures on the same set of axes

multiple plots

how do I plot two figures on the same set of axes?

Best Answer

plot ( x, y )
hold on
plot ( a, b )