How to calculate the median for each day of the year in 91 years?

조회 수: 1 (최근 30일)
Maria Mateus
Maria Mateus 2013년 10월 9일
댓글: Matt Kindig 2013년 10월 9일
I need to calculate the median value for each day of the year from a period of record that goes from Jan 1st 1915 to Dec 31 2006 (ie: median values for: 01-01-1915, 01-01-1016,...,01-01-2006).
The matrix is organized in the following order:
Year Month Day Streamflow_A1B Streamflow_B1 1915 01 01 1000 1010 1915 01 02 1100 1050 1915 01 03 2000 2100 ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... 2006 12 31 2000 2100
Any help with this will be very much appreciated. I am new at Matlab.
Thanks!

답변 (2개)

Matt Kindig
Matt Kindig 2013년 10월 9일
편집: Matt Kindig 2013년 10월 9일
I think this is a good use of accumarray().
%some sample data, to illustrate approach
Data = [1915 1 1 1000 1010;
1915 1 2 1100 1050;
1915 1 3 2000 2100;
1918 1 1 500 800;
1918 1 2 1000 600;
2006 12 31 2000 2100;
2008 12 15 1800 1920];
%break into variables
Days = Data(:,2:3);
StreamA1B = Data(:,4);
StreamB1 = Data(:,5);
%get unique month/day combinations. Note, not all months will have the same
%number of days! Leap years can also complicate things a bit.
[MonthDays, ~, index] = unique( Days, 'rows');
%calculate median by day
StreamA1B_med = accumarray(index, StreamA1B, [], @median);
SreamB1_med = accumarray(index, StreamB1, [], @median);
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2013년 10월 9일
Maria commented
Thanks! However, this only gives me values for each day (1 to 31), right? I need to calculate this for each day of the year, that is for each day one in Jan, each day one in Feb, etc.
Thanks!
Matt Kindig
Matt Kindig 2013년 10월 9일
No, this should give you all days of the month. If you look at the MonthDays variable, you'll see that all month/day combinations are covered.

댓글을 달려면 로그인하십시오.


Maria Mateus
Maria Mateus 2013년 10월 9일
Never mind. I got it. Thanks!

카테고리

Help CenterFile Exchange에서 Time Series에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by