フィルターのクリア

converting data from minutes to hours

1 回表示 (過去 30 日間)
Oliver
Oliver 2011 年 12 月 4 日
Hi, I have a data set of temperature values for every minute over a time period. What would be the easiest way to convert the data in to hourly data by taking an average of 60 minute periods?
Thanks, Olly

採用された回答

David Young
David Young 2011 年 12 月 4 日
>> data_minute = rand(180, 1); % synthetic data
>> data_hour = mean(reshape(data_minute, 60, []))
  1 件のコメント
Oliver
Oliver 2011 年 12 月 4 日
that's great, thanks for the help

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

その他の回答 (0 件)

カテゴリ

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