How to draw (semi-)logarithmic 3d plots? (Matlab)

Jader Dias picture Jader Dias · Jan 11, 2009 · Viewed 12.3k times · Source

I know semilogx and semilogy for 2D plots. There is any equivalent for SURF and MESH?

Answer

Doubt picture Doubt · Feb 7, 2013

As stated in the mentioned link, to set all three axes to logarithmic scaling, use

set(gca, 'XScale', 'log', 'YScale', 'log', 'ZScale', 'log')