Find the number of times a number is in an array.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Is there a specific 'find' function wherein i can check how many times a string/number is in an array?
0 comentarios
Respuestas (2)
Image Analyst
el 30 de Sept. de 2012
You can use the ismember(), hist(), or histc() functions.
0 comentarios
bym
el 30 de Sept. de 2012
one way
x = randi(10,100,1); %example data
>> sum(x==5)
ans =
8
0 comentarios
Ver también
Categorías
Más información sobre Numeric Types 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!