MATLAB: How to create 4 axis on one single plot

graphicsMATLABplot

Hello,
i need a plot with 4 axis. Two times abscissa and ordinate, top bottom, left and right. Background: e.g.: log(x) on bottom abscissa and corresponding x on top abscissa.
I tried plotyy, but but didnt get acceptable results
Thanks in advance

Best Answer

Solved:
ax2.XTickLabelMode = 'manual'; ax2.XLim = [0 40];
works fine for this example.