Plot timeseries for mean monthly temperature
Mostrar comentarios más antiguos
Can someomne help me plot timeseries for mean monthly temperature ?
Respuestas (2)
Star Strider
el 22 de Nov. de 2022
0 votos
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
1 comentario
Clickme26
el 22 de Nov. de 2022
Categorías
Más información sobre Time Series en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!