Plot timeseries for mean monthly temperature
显示 更早的评论
Can someomne help me plot timeseries for mean monthly temperature ?
回答(2 个)
Star Strider
2022-11-22
0 个投票
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
类别
在 帮助中心 和 File Exchange 中查找有关 Time Series 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!