MATLAB: Grid of values spacing in logarithmic scale

Hi,
how do I create a grid of values ​​that explore orders of magnitude spacing in a logarithmic scale?
Thanks in advance for the help.

Best Answer

I am not certain what you want.
Try this:
xv = logspace(-5, -1, 25);
yv = linspace(0, 1, numel(xv));
figure
semilogx(xv, yv)
grid