MATLAB: Want to change the range of a single axis of a plotyy figure

axisaxis tightplotyysemilogx

Hi
I want my x-axis to be tight to the data on a plotyy graph. I can't seem to do it without messing up the axes.
My data ranges from 1e-5 to 1e3 and it's a semilogx plotting function. Is there a way I can use axis([…]) to specify all three ranges (x, y1, y2) at once?
Thanks for any help Mike

Best Answer

There is no way to specify the limits all at once.
[ax h1 h2] = plotyy(x,y1,x,y2);
xlim(ax(1), ...);
xlim(ax(2), ...);
ylim(ax(1), ...);
ylim(ax(2), ...);