How to Adjust x axis plot values in Matlab?

1 Ansicht (letzte 30 Tage)
djim djim
djim djim am 7 Jun. 2020
Kommentiert: djim djim am 8 Jun. 2020
Hi,
I need to plot the following function in matlab
M= [0.47 0.49 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.52 ];
Range= 5:2:23;
plot(Range,M);
So the x-axis values are automatically set by matlab as : 6 8 10 12 14 16...24
how to set them as 5 7 9 11 13 15 .... 23 ?
by the way am using matlab 2013

Akzeptierte Antwort

Thiago Henrique Gomes Lobato
Use the xticks and xlim functions:
M= [0.47 0.49 0.50 0.50 0.51 0.51 0.51 0.51 0.51 0.52 ];
Range= 5:2:23;
plot(Range,M);
xticks(5:2:23);xlim([5,23])

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by