Azzera filtri
Azzera filtri

Finding the number of values bigger than a certain number in an array?

26 visualizzazioni (ultimi 30 giorni)
Suppose I have an array of 50 numbers, how would I find the number of elements bigger than say 21 in an array of random numbers? Conversely, for less than as well.

Risposta accettata

Tom
Tom il 26 Set 2012
Modificato: Tom il 26 Set 2012
x=50*rand(7);
a= x > 21;
numel(a(a>0))

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by