Azzera filtri
Azzera filtri

Repeated Values in matrix

1 visualizzazione (ultimi 30 giorni)
mustafa alnasser
mustafa alnasser il 6 Mar 2014
Risposto: Azzi Abdelmalek il 6 Mar 2014
Dear All;
I have an array of two columns, I want to find each repeated values of y for each x value and then the max of these y value to this x value and make new matrix in which for each x value there is a unique y value
how to do that ?
  1 Commento
Walter Roberson
Walter Roberson il 6 Mar 2014
What do you want done if one of the y values is unique instead of being repeated?

Accedi per commentare.

Risposta accettata

Walter Roberson
Walter Roberson il 6 Mar 2014
[uvals, ua, uc] = unique(xy(:,1));
maxy = accumarray(uc(:), xy(:,2), [], @max);
newarray = [uvals(:), maxy(:)];

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 6 Mar 2014
v=[1 2;1 3;4 5;4 20;10 30]
[ii,jj,kk]=unique(v(:,1))
out=[ii accumarray(kk,v(:,2),[],@max)]

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by