Index of maximum values in accumarray

조회 수: 12 (최근 30일)
Gina Torres
Gina Torres 2018년 5월 20일
댓글: Ameer Hamza 2018년 5월 22일
Hello all,
I'm working with wind data that is measured every hour, the data is in the form of a matrix of 3 columns, the first is the date, the second is wind speed and the third is wind direction. I have created a code using accumarray in order to get the maximum daily value of wind speed. However I want to be able to get the corresponding wind direction for those maximum values, so for this, I need the indexes of the Maximum values.
I have tried the suggestion from here given by Walter. However, the resulting indexing shows a different result from the one I need (numerical example below):
My code is the following:
max_val = accumarray(c,wind(:,2),[],@nanmax);
max_index= accumarray(c,wind(:,2),[],@max_and_idx);
where:
function idx = max_and_idx(x)
[~,idx] = max(x);
end
the answer I get is:
max_val =[4.5 5.1 3.6 2.5 .....]
max_index=[16 15 15 12 .....]
I checked my data and 4.5 corresponds to position #15 in day 1, 5.1 corresponds to position #16 on day 2 and so on. What I want is the actual position of these numbers within the entire wind matrix. How can I fix this problem?

채택된 답변

Ameer Hamza
Ameer Hamza 2018년 5월 20일
편집: Ameer Hamza 2018년 5월 22일
A better approach might be to use the splitapply to divide the data based on days. Then the better will be better organized and you can easily process for required results. For example
splitData = splitapply(@(x) {x}, wind(:,2:3), findgroups(c));
now you can search splitData to find the max value and the corresponding direction,
result = cellfun(@(x) x(x(:,1)==max(x(:,1)), :), splitData, , 'UniformOutput', 0);
the result will contain the maximum daily value and wind direction.
  댓글 수: 5
Gina Torres
Gina Torres 2018년 5월 22일
Thank you! This worked perfectly!
Ameer Hamza
Ameer Hamza 2018년 5월 22일
You are welcome.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by