Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
Portgas Ace
Portgas Ace am 30 Sep. 2012
Is there a specific 'find' function wherein i can check how many times a string/number is in an array?

Antworten (2)

Image Analyst
Image Analyst am 30 Sep. 2012
You can use the ismember(), hist(), or histc() functions.

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

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by