Find Number of Elements in an Array

22 visualizaciones (últimos 30 días)
Burak Alakus
Burak Alakus el 19 de Ag. de 2019
Comentada: Adam Danz el 20 de Ag. de 2019
Hello guys. I want to find the number of elements in a string array.
Lets say A = ['KM'; 'KL'; 'MN'; 'KM', 'MM', 'KL'] is my array list.
It should give output as;
[2,2,1,1] since my string array includes 2 KM, 2 KL, 1MN, and 1MM.
How can i do that?

Respuesta aceptada

Adam Danz
Adam Danz el 19 de Ag. de 2019
The "A" array provided in the question will result in a dimensions mismatch error. I'm assuming A is an [nx2] char array.
A = ['KM'; 'KL'; 'MN'; 'KM'; 'MM'; 'KL'];
% Convert char array to cell array of strings
Acell = cellstr(A);
% Find groups of strings
[groups, groupID]= findgroups(Acell(:));
% Count members of each group
count = sum(groups(:).' == unique(groups(:)),2);
% Display results in a table
countTable = table(groupID(:),count(:),'VariableNames',{'Group','Count'});
Result
countTable =
4×2 table
Group Count
_____ _____
'KL' 2
'KM' 2
'MM' 1
'MN' 1
  2 comentarios
Burak Alakus
Burak Alakus el 20 de Ag. de 2019
Thank you Mr. Danz. This answer really helped me.
Adam Danz
Adam Danz el 20 de Ag. de 2019
Glad I could help and learn along with ya!

Iniciar sesión para comentar.

Más respuestas (1)

Andrei Bobrov
Andrei Bobrov el 19 de Ag. de 2019
Editada: Andrei Bobrov el 19 de Ag. de 2019
A = {'KM'; 'KL'; 'MN'; 'KM'; 'MM'; 'KL'};
out = varfun(@x,table(A),'GroupingVariables','A')
  1 comentario
Burak Alakus
Burak Alakus el 20 de Ag. de 2019
Thank you Mr. Bobrov. This answer really helped me.

Iniciar sesión para comentar.

Categorías

Más información sobre Numeric Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by