Azzera filtri
Azzera filtri

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

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

Risposta accettata

Birdman
Birdman il 26 Ott 2017
Modificato: Birdman il 26 Ott 2017

Più risposte (1)

Jos (10584)
Jos (10584) il 26 Ott 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!

Categorie

Scopri di più su Log Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by