Plot timeseries for mean monthly temperature

9 次查看(过去 30 天)
Can someomne help me plot timeseries for mean monthly temperature ?

回答(2 个)

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

cr
cr 2022-11-22
编辑:cr 2022-11-22
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers

类别

Help CenterFile Exchange 中查找有关 Time Series 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by