Find the number of times a number is in an array.
Afficher commentaires plus anciens
Is there a specific 'find' function wherein i can check how many times a string/number is in an array?
Réponses (2)
Image Analyst
le 30 Sep 2012
1 vote
You can use the ismember(), hist(), or histc() functions.
bym
le 30 Sep 2012
one way
x = randi(10,100,1); %example data
>> sum(x==5)
ans =
8
Catégories
En savoir plus sur Elementary Math dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!