how to set y-axis as log scale?

7.085 views (last 30 days)
I am plotting x-y plot using plot function. I want to set only y-axis as log scale and x-axis as linear? How to do that? I used loglog function but it scales both axis but I want only Y.

Accepted Answer

Walter Roberson
Walter Roberson on 22 Sep 2023
Edited: MathWorks Support Team on 22 Sep 2023
The best way to create that type of axes is to use the semilogy function. Alternatively, you can set the ‘YScale’ property on the axes:
set(gca, 'YScale', 'log')
***Update from Mathworks Support Team - September 2023***
As of R2023b, you can also use the 'yscale ' function. 
  18 Comments
Weirong Sun
Weirong Sun on 9 May 2022
good answer! It's very helpful!!!
mingyang zhao
mingyang zhao on 2 Aug 2023
Great answer! Thank you!

Sign in to comment.

More Answers (2)

Rohit Sinha
Rohit Sinha on 27 Apr 2022
The easiest way to do this is simply use the following command instead of plot
semilogy(x,y);
This will plot x axis on a linear scale and y axis on a log scale. Similarly, if you want to plot x axis on log scale and y axis on a linear scale, you can use
semilogx(x,y) ;
  2 Comments
Walter Roberson
Walter Roberson on 27 Apr 2022
semilogy() is the first thing I mentioned in my answer in 2016.
Nicholas Santiago
Nicholas Santiago on 4 Nov 2022
yo i totally missed that I generally only read the bold stuff, thanks a ton!

Sign in to comment.


Toshia M
Toshia M on 20 Sep 2023
Starting in R2023b, you can change the scale of any axis after you create the plot by calling the xscale, yscale, or zscale function.
For example, create a plot of two vectors x and y. Then set the scale of the y-axis to logarithmic.
x = 1:100;
y = x.^2;
plot(x,y)
grid on
yscale log

Tags

No tags entered yet.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!