Plot timeseries for mean monthly temperature

3 visualizzazioni (ultimi 30 giorni)
Clickme26
Clickme26 il 22 Nov 2022
Commentato: Star Strider il 22 Nov 2022
Questo/a domanda è stato/a segnalato/a da Star Strider
Can someomne help me plot timeseries for mean monthly temperature ?

Risposte (2)

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

cr
cr il 22 Nov 2022
Modificato: cr il 22 Nov 2022
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers

Categorie

Scopri di più su Time Series in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by