findout the repeating element and the no of time of repeated in a matrix

1 vue (au cours des 30 derniers jours)
navan
navan le 26 Mai 2015
Commenté : Image Analyst le 26 Mai 2015
i do have a matrix
A=[1,2,3,4,5,5,6,7,8,8,8, 9]
how can i find the repeating values and the no of times it is repeated. answer i expected is
repeatvalues=[5, 8]
Nooftimerepeated=[2,3]
  1 commentaire
Image Analyst
Image Analyst le 26 Mai 2015
Are the numbers always integers? Or can they be fractional/irrational numbers? (It makes a difference.)

Connectez-vous pour commenter.

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 26 Mai 2015
Modifié(e) : Andrei Bobrov le 26 Mai 2015
A=[1,2,3,4,5,5,6,7,8,8,8, 9]
a = unique(A);
b = histc(A,a);
t = b > 1;
repeatvalues = a(t);
Nooftimerepeated = b(t);

Catégories

En savoir plus sur Logical 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