How can I plot Months in x axis in Matlab

12 vues (au cours des 30 derniers jours)
Tanmoyee Bhattacharya
Tanmoyee Bhattacharya le 1 Avr 2015
Commenté : Dedong Huang le 11 Déc 2021
I have a excel sheet
Jan =-9.863459038
Feb=-34.33708151
Mar=-57.98922801
Apr=-52.98083559
May=-46.13563686
Jun=-24.15487463
Jul=-8.47398491
Aug=-4.773884307
Sep=-10.32493525
Oct=-7.700825238
Nov=6.015198544
Dec=11.1233672
I have to plot a graph whose x axis is month.I want to plot it by Jan,Feb etc. How can I do it.

Réponses (1)

Michael Haderlein
Michael Haderlein le 1 Avr 2015
You can set the xticklabels:
y=rand(1,12);
figure, plot(y)
set(gca,'xtick',1:12,...
'xticklabel',{'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'})
  5 commentaires
ntambara owen
ntambara owen le 9 Août 2019
It works.....
Dedong Huang
Dedong Huang le 11 Déc 2021
Hello,
I just tried this method with my data and it plotted a line graph but the y axis is less than 1 and my y axis data on my table are all above 5, how do i fix this?

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by