unique and min by index

3 vues (au cours des 30 derniers jours)
Tiina
Tiina le 16 Déc 2015
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.

Réponses (1)

Walter Roberson
Walter Roberson le 16 Déc 2015
group_min = accumarray(A(:), B(:), [], @min);
result1 = group_min(A);
result2 = B - result1;

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by