Plot timeseries for mean monthly temperature
Mostra commenti meno recenti
Can someomne help me plot timeseries for mean monthly temperature ?
Risposte (2)
Star Strider
il 22 Nov 2022
0 voti
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
1 Commento
Clickme26
il 22 Nov 2022
Categorie
Scopri di più su Time Series in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!