How to plot X axis for 31 years from 1981 to 2014?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi guys, I am beginner in Matlab I want to plot x axis for years starts from 1982-2014 and I have missing data in (1994) and (2000). when I do the plot function X axis shows division for each 5 years(1980,1985,1990........2015); How can I make X axis to show division each year ( 1982,1983,1984,1985........2014)?
Thank you
Reyadh
0 commentaires
Réponses (1)
Star Strider
le 17 Avr 2015
Guessing here, but this should probably work:
x = [1982:1993 1995:1999 2001:2014];
y = randi(10, 1, 31);
figure(1)
plot(x, y)
set(gca, 'XLim', [1982 2014])
set(gca, 'XTick', [1982:2014], 'FontSize',8)
0 commentaires
Voir également
Catégories
En savoir plus sur Annotations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!