Section: Handle-Based Graphics
plot
command:
semilogx(<data 1>,{linespec 1},<data 2>,{linespec 2}...,properties...)
in fact, it is a simple wrapper around plot
that sets the
x axis to have a logarithmic scale.
--> y = linspace(0,2); --> x = (10).^y; --> plot(x,y,'r-'); --> quit
and now with a logarithmic x axis
--> semilogx(x,y,'r-'); --> quit