How to take an average over one month during different years ?

5 ビュー (過去 30 日間)
Ali Saremi
Ali Saremi 2017 年 9 月 1 日
コメント済み: Kelly Kearney 2017 年 9 月 6 日
Hi,
I've got some data from 1979 to 2017. I want to take an average over data of month, for example, January from 1979 to 2017. Only January, not other months. PLease see attached. I have also attached my Matlab file which contains the table with date and data. If you could take a look and let me know how I can do it, I would appreciate it. Thank you.
Regards Ali

採用された回答

Kelly Kearney
Kelly Kearney 2017 年 9 月 1 日
A bit hard to tell from your screenshot whether your time array is an array of datetimes or an array of date strings. Assuming it's the former
% Some fake data
t = datetime(1979,1,1):datetime('today');
x = rand(size(t));
% Average data by month
for im = 1:12
xavg(im) = mean(x(month(t)==im));
end
  3 件のコメント
Ali Saremi
Ali Saremi 2017 年 9 月 2 日
Dear kelly,
I have also attached my MATLAB file. If you could take a look at this, would be great. Thank you.
Kind Regards Ali
Kelly Kearney
Kelly Kearney 2017 年 9 月 6 日
I don't see any attached mat file. If you post the exact code you attempted, and any error messages, that will be much more useful than screenshots to diagnose the problem.
In particular, is the Time column in your table composed of datetimes or date strings?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by