find the number of occurances
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
johnson saldanha
el 13 de Nov. de 2018
Comentada: johnson saldanha
el 13 de Nov. de 2018
my matrix is x=[ 1 1 1 3 3 4 4 4 6 7]
i want the output as y=[ 3 2 3 1 1]
i want to find how many times a particular value is occuring
0 comentarios
Respuesta aceptada
Más respuestas (1)
madhan ravi
el 13 de Nov. de 2018
x=[ 1 1 1 3 3 4 4 4 6 7]
u = unique(x) %unique numbers
y=histc(x,u) %occurences
bonus = [u; y]' %relation between them
2 comentarios
Ver también
Categorías
Más información sobre Logical 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!