what function to use to find frequency of values in set?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
BigWaffle
el 23 de Mzo. de 2021
Respondida: Image Analyst
el 23 de Mzo. de 2021
How do I find number of occurence of a certain number in a set.
I have
R12= [5 6 1 2 6 1 2 1 2 6 5 2]
I need to find frequency of occurs of each number
0 comentarios
Respuesta aceptada
Star Strider
el 23 de Mzo. de 2021
Try this:
R12= [5 6 1 2 6 1 2 1 2 6 5 2];
[R12u,~,ix] = unique(R12(:),'stable');
Number = R12u;
Count = accumarray(ix,1);
Result = table(Number, Count)
producing:
Result =
4×2 table
Number Count
______ _____
5 2
6 3
1 3
2 4
.
2 comentarios
Más respuestas (2)
Image Analyst
el 23 de Mzo. de 2021
You could use histcounts:
R12= [5 6 1 2 6 1 2 1 2 6 5 2];
edges = [unique(R12), inf]
counts = histcounts(R12, edges)
0 comentarios
Ver también
Categorías
Más información sobre Data Distribution Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!