Is it possible to make a plot in matlab that does not actually take the logs of the values? I’m plotting wide ranges of values and when I try to make a log plot of them, those below 1 become negative. I would just like it to plot the values on a log scale without taking their logs.
Share
Yes, it is possible. Use the
loglogcommand.The example from the Mathworks website:
If you do not want both axes to be log scale, use
semilogxorsemilogy.