Plot timeseries for mean monthly temperature

4 visualizaciones (últimos 30 días)
Clickme26
Clickme26 el 22 de Nov. de 2022
Comentada: Star Strider el 22 de Nov. de 2022
Star Strider ha marcado con alerta este/a pregunta
Can someomne help me plot timeseries for mean monthly temperature ?

Respuestas (2)

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

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

Categorías

Más información sobre Time Series en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by