Effacer les filtres
Effacer les filtres

How can i find,most and less reapted number in array or matrix?

2 vues (au cours des 30 derniers jours)
Farhad
Farhad le 20 Mai 2015
Commenté : Farhad le 20 Mai 2015
i have a matrix like:X=[1 3 3 3 3; 3 7 4 4 4; 4 7 5 5 5; 5 9 8 8 8 ] in this matrix most repeated number is 3 and less repeated number is 1 and 9.i want to sort number by times of repeated.how can i do this? Thanks

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 20 Mai 2015
X=[1 3 3 3 3; 3 7 4 4 4; 4 7 5 5 5; 5 9 8 8 8 ];
c = unique(X(:));
z = histc(X(:),c);
out = sortrows([c,z],2);

Plus de réponses (1)

Image Analyst
Image Analyst le 20 Mai 2015
Is this homework? Sounds like it. Why not try histcounts()? Or histc if you have an old version of MATLAB. It's a good chance to learn about histograms and the several MATLAB functions related to histograms.
  1 commentaire
Farhad
Farhad le 20 Mai 2015
no,i am working on a project,i have 1800 data and i want to sort them by times of repeated,i use mode() function to finde more repeated number but it is not enough.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Shifting and Sorting Matrices 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