Plot timeseries for mean monthly temperature
Show older comments
Can someomne help me plot timeseries for mean monthly temperature ?
Answers (2)
Star Strider
on 22 Nov 2022
0 votes
Try this.
xdata = datenum(dataClean(1:3)');
ydata = dataClean(4,:)';
plot(xdata,ydata);
datetick x
Cheers
1 Comment
Clickme26
on 22 Nov 2022
Categories
Find more on Time Series in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!