MATLAB: Plot 2 curves with ‘very close’ y values

plotting

Hello,
I would like to know if there is a way in matlab to plot 2 curves on the same plot, that have very close y values (very small differences).
Note: I have tried the 'log' for the y-scale but gave a similar view as the linear!
Thanks

Best Answer

plot(t,y1,'or)
hold on
plot(t,y2,'-g')