Plot timeseries for mean monthly temperature

3 vues (au cours des 30 derniers jours)
Clickme26
Clickme26 le 22 Nov 2022
Commenté : Star Strider le 22 Nov 2022
Can someomne help me plot timeseries for mean monthly temperature ?

Réponses (2)

Star Strider
Star Strider le 22 Nov 2022
Create a timetable of your data and then use the retime function.

cr
cr le 22 Nov 2022
Modifié(e) : cr le 22 Nov 2022
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
  1 commentaire
Clickme26
Clickme26 le 22 Nov 2022
it reads error the vectors must be the same legth

Connectez-vous pour commenter.

Catégories

En savoir plus sur Time Series 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!

Translated by