Plot timeseries for mean monthly temperature
Afficher commentaires plus anciens
Can someomne help me plot timeseries for mean monthly temperature ?
Réponses (2)
Star Strider
le 22 Nov 2022
0 votes
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
1 commentaire
Clickme26
le 22 Nov 2022
Catégories
En savoir plus sur Time Series dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!