How to find subgroup min or max

조회 수: 1 (최근 30일)
Tiina
Tiina 2016년 3월 8일
댓글: Stephen23 2016년 3월 8일
group_id=[1 1 1 2 2 3 3 3]';
B=[ 5 6 7 4 1 2 2 3]';
output: C=[ 5 0 0 0 1 2 2 0]';
  댓글 수: 1
Jan
Jan 2016년 3월 8일
The question is not clear. Please explain how C is obtained.

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

채택된 답변

Stephen23
Stephen23 2016년 3월 8일
편집: Stephen23 2016년 3월 8일
X = [1;1;1;2;2;3;3;3];
B = [5;6;7;4;1;2;2;3];
A = accumarray(X,B,[],@min);
Y = any(bsxfun(@eq,A,B.'));
C = zeros(size(B));
C(Y) = B(Y)
where the output is
C =
5
0
0
0
1
2
2
0
  댓글 수: 2
Tiina
Tiina 2016년 3월 8일
great thx, although i dont know wat "any" means with the bsxfun
Stephen23
Stephen23 2016년 3월 8일
Read the any documentation.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by