Clear Filters
Clear Filters

How do you change the x scale of a plot to logs?

181 views (last 30 days)
I am trying to make my plots x scale in logs i did it manually but don't know the code.

Accepted Answer

Birdman
Birdman on 26 Oct 2017
Edited: Birdman on 26 Oct 2017

More Answers (1)

Jos (10584)
Jos (10584) on 26 Oct 2017
That is easy :)
% draw a graph
x = 10.^[0:0.5:9] ;
y = 2 *log10(x) + 3 ;
plot(x,y,'bo-');
pause
% set the x-axis scale to log
set(gca,'Xscale','log') % yeah, that is indeed easy!

Community Treasure Hunt

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

Start Hunting!