MATLAB: Superimposing plots.

subplot

[EDIT: Wed May 25 22:22:46 UTC 2011 – Reformat – MKF]
Hello, I have the two following plots which I am trying to superimpose. I want figure two to be super imposed on figure 1 but figure 1 has a log scale on its x axis. Can someone please help.
semilogx(f,x) %figure 1
stem(y,z) %figure 2

Best Answer

Why not use SUBPLOT?
subplot(1,2,1)
stem(y,z)
supbplot(1,2,2)
semilogx(f,x)
By the way, a figure is the window that holds the axes object. If you want them on the same axes, do
semilogx(f,x)
hold on
stem(y,z)