Count the frequent numbers in the matrix based on the sequence in the matrix ?

1 vue (au cours des 30 derniers jours)
fathi
fathi le 22 Mar 2017
Commenté : fathi le 30 Avr 2017
I like to count the frequent numbers in the matrix based on the sequence in the matrix /// EX: Y = [ 5 4 4 2 ; 6 3 3 1 ;2 4 2 2; 5 5 6 1] The answer suppose to be like: 5 3, 4 3, 2 4 , 6 2, 3 2, 1 2 /// That mean the 5 repeated 2 times, the 4 repeated three times and so on .. /// The an important point is the number based on the sequence in the matrix which 5,4,2,6,3,1 /// not Descending or Ascending /// thanks

Réponse acceptée

the cyclist
the cyclist le 22 Mar 2017
Here's one way:
Y = [ 5 4 4 2 ; 6 3 3 1 ;2 4 2 2; 5 5 6 1];
YT = Y';
[uniqueY, ~, j] = unique(YT(:),'stable');
ycounts = histcounts(j,[unique(j); Inf]);
output = [uniqueY,ycounts']
  5 commentaires
fathi
fathi le 15 Avr 2017
Thank you, my friend, for your reply.It works. that is what I want exactly.
fathi
fathi le 30 Avr 2017
good morning .. if I have 40 figures from the up ( last answer one ) from different 40 matrixes with 4*4 dim //// how can I represent them by one figure? I mean one generalized graph?

Connectez-vous pour commenter.

Plus de réponses (0)

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