How can I plot Months in x axis in Matlab
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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.
0 comentarios
Respuestas (1)
Michael Haderlein
el 1 de Abr. de 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 comentarios
Dedong Huang
el 11 de Dic. de 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?
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!