Plot timeseries for mean monthly temperature

4 ビュー (過去 30 日間)
Clickme26
Clickme26 2022 年 11 月 22 日
コメント済み: Star Strider 2022 年 11 月 22 日
この 質問 は Star Strider さんによってフラグが設定されました
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
  1 件のコメント
Clickme26
Clickme26 2022 年 11 月 22 日
it reads error the vectors must be the same legth

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTime Series についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by