Find the number of times a number is in an array.

1 visualización (últimos 30 días)
Portgas Ace
Portgas Ace el 30 de Sept. de 2012
Is there a specific 'find' function wherein i can check how many times a string/number is in an array?

Respuestas (2)

Image Analyst
Image Analyst el 30 de Sept. de 2012
You can use the ismember(), hist(), or histc() functions.

bym
bym el 30 de Sept. de 2012
one way
x = randi(10,100,1); %example data
>> sum(x==5)
ans =
8

Categorías

Más información sobre Multidimensional Arrays 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