unique and min by index

조회 수: 3 (최근 30일)
Tiina
Tiina 2015년 12월 16일
답변: Walter Roberson 2015년 12월 16일
Hi, if I have A=[1 1 1 2 2 3 3 3] as unique values and B=[ 5 6 7 4 1 2 2 3]. I want to find the min and difference as [5 5 5 1 1 2 2 2] and [0 1 2 3 0 0 0 1]. How may i do that? thanks.

답변 (1개)

Walter Roberson
Walter Roberson 2015년 12월 16일
group_min = accumarray(A(:), B(:), [], @min);
result1 = group_min(A);
result2 = B - result1;

카테고리

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