Matlab: making the grid in plot logarithmic
I have plotted to vectors against each other, and they are already logarithmic and everything is fine with that. But now that I have my plot i want the grid to be logarithmic. I write "grid on" in my code, and I think there should be a way to do this in the plot, but I can't remember how. How do I make the grid logarithmic? If you use loglog , semilogx or semilogy instead of plot , the grid will automatically be on a log scale for the corresponding axes when using grid on . If you have already plotted the axes, you can execute the following on the command line: set(gca,'yscale','log') %# to