MATLAB: Plotting two loglog y-axes

2d plotaxeslog

Is there an equivalent function to plotyy that allows you to plot two different loglog y-axes with different scales using the same x-axis?
For example:
x = [1 2 3 4 5 6 7 8 9 10]
y1 = [2 4 6 8 10 12 14 16 18 20]
y2 = [10 20 40 80 160 320 640 1280 2560 5120]

Best Answer

AX = plotyy(x,y1,x,y2);
set(AX,'yscale','log') % And maybe xscale too?