how can we calculate count of specific group in a row

1 visualizzazione (ultimi 30 giorni)
i have a matric
3 2 5,
3 2 5,
4 2 5,
4 2 5,
4 2 5,
i need output like this 3 2 5 *2*- where 2 and 3 of times occured
4 2 5 *3*

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 22 Ago 2016
A=[3 2 5,
3 2 5,
4 2 5,
4 2 5,
4 2 5]
[ii,jj,kk]=unique(A,'rows','stable')
out=[ii,accumarray(kk,1)]
  1 Commento
abdul wahab  aziz
abdul wahab aziz il 22 Ago 2016
thanks for answer aziz abdelmalek i need another help now i have grouping is done i want to get most counted col value
e.g 3 2 5-6 3 2 6 -7 so i must be able to access second row 3 2 6 e.g i need its value 2

Accedi per commentare.

Più risposte (0)

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by